Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilLayerUnderSurfaceLine.cs
===================================================================
diff -u -r9f936b0b29f490a024df02345df182133b1c041a -r69d647795daacbf48e17d0cf3a02a21865ab4ae6
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilLayerUnderSurfaceLine.cs (.../MacroStabilityInwardsSoilLayerUnderSurfaceLine.cs) (revision 9f936b0b29f490a024df02345df182133b1c041a)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilLayerUnderSurfaceLine.cs (.../MacroStabilityInwardsSoilLayerUnderSurfaceLine.cs) (revision 69d647795daacbf48e17d0cf3a02a21865ab4ae6)
@@ -35,19 +35,19 @@
/// Creates a new instance of .
///
/// The outer ring of the geometry of the soil layer.
- /// The properties of the soil layer.
+ /// The data of the soil layer.
/// Thrown when any parameter is null.
- public MacroStabilityInwardsSoilLayerUnderSurfaceLine(Point2D[] outerRing, MacroStabilityInwardsSoilLayerProperties properties)
- : this(outerRing, Enumerable.Empty(), properties) {}
+ public MacroStabilityInwardsSoilLayerUnderSurfaceLine(Point2D[] outerRing, MacroStabilityInwardsSoilLayerData data)
+ : this(outerRing, Enumerable.Empty(), data) {}
///
/// Creates a new instance of .
///
/// The outer ring of the geometry of the soil layer.
/// The holes of the geometry of the soil layer.
- /// The properties of the soil layer.
+ /// The data of the soil layer.
/// Thrown when any parameter is null.
- public MacroStabilityInwardsSoilLayerUnderSurfaceLine(Point2D[] outerRing, IEnumerable holes, MacroStabilityInwardsSoilLayerProperties properties)
+ public MacroStabilityInwardsSoilLayerUnderSurfaceLine(Point2D[] outerRing, IEnumerable holes, MacroStabilityInwardsSoilLayerData data)
{
if (outerRing == null)
{
@@ -57,13 +57,13 @@
{
throw new ArgumentNullException(nameof(holes));
}
- if (properties == null)
+ if (data == null)
{
- throw new ArgumentNullException(nameof(properties));
+ throw new ArgumentNullException(nameof(data));
}
OuterRing = outerRing;
Holes = holes;
- Properties = properties;
+ Data = data;
}
///
@@ -77,8 +77,8 @@
public IEnumerable Holes { get; }
///
- /// Gets the properties of the soil layer.
+ /// Gets the data of the soil layer.
///
- public MacroStabilityInwardsSoilLayerProperties Properties { get; }
+ public MacroStabilityInwardsSoilLayerData Data { get; }
}
}
\ No newline at end of file