Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/StochasticSoilModel.cs =================================================================== diff -u -r271c2fc54b79aa394b3d8d417f9dcd6d5675728e -r3329f24f4e41a93f26e8b64a8454cbe851ee057f --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/StochasticSoilModel.cs (.../StochasticSoilModel.cs) (revision 271c2fc54b79aa394b3d8d417f9dcd6d5675728e) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/StochasticSoilModel.cs (.../StochasticSoilModel.cs) (revision 3329f24f4e41a93f26e8b64a8454cbe851ee057f) @@ -41,18 +41,12 @@ /// Name of the segment soil model. public StochasticSoilModel(long id, string name) { - Id = id; Name = name; Geometry = new List(); StochasticSoilProfiles = new List(); } /// - /// Gets the database identifier of the stochastic soil model. - /// - public long Id { get; private set; } - - /// /// Gets the name of the segment soil model. /// public string Name { get; private set; } @@ -86,7 +80,6 @@ throw new ArgumentNullException(nameof(fromModel)); } - Id = fromModel.Id; Name = fromModel.Name; Geometry.Clear(); foreach (Point2D point in fromModel.Geometry)