Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilProfileUnderSurfaceLine.cs
===================================================================
diff -u -rf2838b78c54529e9b15208b44de854f7760e350f -r90a9502badff5788374461a1b2179a5dd0e866a2
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilProfileUnderSurfaceLine.cs (.../MacroStabilityInwardsSoilProfileUnderSurfaceLine.cs) (revision f2838b78c54529e9b15208b44de854f7760e350f)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilProfileUnderSurfaceLine.cs (.../MacroStabilityInwardsSoilProfileUnderSurfaceLine.cs) (revision 90a9502badff5788374461a1b2179a5dd0e866a2)
@@ -21,22 +21,23 @@
using System;
using System.Collections.Generic;
+using Ringtoets.MacroStabilityInwards.Primitives;
namespace Ringtoets.MacroStabilityInwards.Data.SoilProfile
{
///
/// A soil profile for which its properties have been adapted using a surface line.
///
- public class MacroStabilityInwardsSoilProfileUnderSurfaceLine
+ public class MacroStabilityInwardsSoilProfileUnderSurfaceLine : IMacroStabilityInwardsSoilProfileUnderSurfaceLine
{
///
/// Creates a new instance of .
///
/// The layers in the profile.
/// The preconsolidation stresses defined for the profile.
/// Thrown when any parameter is null.
- public MacroStabilityInwardsSoilProfileUnderSurfaceLine(IEnumerable layers,
- IEnumerable preconsolidationStresses)
+ public MacroStabilityInwardsSoilProfileUnderSurfaceLine(IEnumerable layers,
+ IEnumerable preconsolidationStresses)
{
if (layers == null)
{
@@ -49,15 +50,9 @@
Layers = layers;
PreconsolidationStresses = preconsolidationStresses;
}
+
+ public IEnumerable Layers { get; }
- ///
- /// Gets the layers in the profile.
- ///
- public IEnumerable Layers { get; }
-
- ///
- /// Gets the preconsolidation stresses in the profile.
- ///
- public IEnumerable PreconsolidationStresses { get; }
+ public IEnumerable PreconsolidationStresses { get; }
}
}
\ No newline at end of file