Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/MacroStabilityInwardsCalculatorInput.cs
===================================================================
diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -rd47809e3a8fadff2be5b10056b79b16dc27eeca2
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/MacroStabilityInwardsCalculatorInput.cs (.../MacroStabilityInwardsCalculatorInput.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/MacroStabilityInwardsCalculatorInput.cs (.../MacroStabilityInwardsCalculatorInput.cs) (revision d47809e3a8fadff2be5b10056b79b16dc27eeca2)
@@ -44,7 +44,7 @@
}
AssessmentLevel = properties.AssessmentLevel;
SurfaceLine = properties.SurfaceLine;
- SoilProfile = properties.SoilProfile;
+ SoilProfile = properties.SoilProfile as MacroStabilityInwardsSoilProfile1D;
}
public class ConstructionProperties
@@ -75,7 +75,7 @@
///
/// Gets the profile which contains a 1 dimensional definition of soil layers with properties.
///
- public MacroStabilityInwardsSoilProfile SoilProfile { internal get; set; }
+ public ISoilProfile SoilProfile { internal get; set; }
#endregion
}
@@ -96,7 +96,7 @@
///
/// Gets the profile which contains a 1 dimensional definition of soil layers with properties.
///
- public MacroStabilityInwardsSoilProfile SoilProfile { get; private set; }
+ public MacroStabilityInwardsSoilProfile1D SoilProfile { get; private set; }
#endregion
}