Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/StochasticSoilModel.cs
===================================================================
diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r271c2fc54b79aa394b3d8d417f9dcd6d5675728e
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/StochasticSoilModel.cs (.../StochasticSoilModel.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/StochasticSoilModel.cs (.../StochasticSoilModel.cs) (revision 271c2fc54b79aa394b3d8d417f9dcd6d5675728e)
@@ -39,12 +39,10 @@
///
/// Database identifier of the stochastic soil model.
/// Name of the segment soil model.
- /// Name of the segment soil model segment.
- public StochasticSoilModel(long id, string name, string segmentName)
+ public StochasticSoilModel(long id, string name)
{
Id = id;
Name = name;
- SegmentName = segmentName;
Geometry = new List();
StochasticSoilProfiles = new List();
}
@@ -60,11 +58,6 @@
public string Name { get; private set; }
///
- /// /// Gets the name of the segment soil model segment.
- ///
- public string SegmentName { get; private set; }
-
- ///
/// Gets the list of geometry points.
///
public List Geometry { get; }
@@ -95,7 +88,6 @@
Id = fromModel.Id;
Name = fromModel.Name;
- SegmentName = fromModel.SegmentName;
Geometry.Clear();
foreach (Point2D point in fromModel.Geometry)
{