Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/StochasticSoilModel.cs =================================================================== diff -u -r3bf7e84ac84de7dd0be38be7e9f2372878e733f6 -rd82fa09fe9ae053ce7702ba89ef23ae029640d1b --- Ringtoets/Piping/src/Ringtoets.Piping.Data/StochasticSoilModel.cs (.../StochasticSoilModel.cs) (revision 3bf7e84ac84de7dd0be38be7e9f2372878e733f6) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/StochasticSoilModel.cs (.../StochasticSoilModel.cs) (revision d82fa09fe9ae053ce7702ba89ef23ae029640d1b) @@ -33,41 +33,41 @@ /// /// Creates a new instance of . /// - /// Database identifier of the stochastic soil model. - /// Name of the segment soil model. + /// Database identifier of the stochastic soil model. + /// Name of the segment soil model. /// Name of the segment soil model segment. - public StochasticSoilModel(long segmentSoilModelId, string segmentSoilModelName, string segmentName) + public StochasticSoilModel(long id, string name, string segmentName) { - SegmentSoilModelId = segmentSoilModelId; - SegmentSoilModelName = segmentSoilModelName; + Id = id; + Name = name; SegmentName = segmentName; Geometry = new List(); - StochasticSoilProfileProbabilities = new List(); + StochasticSoilProfiles = new List(); } /// /// Gets the database identifier of the stochastic soil model. /// - public long SegmentSoilModelId { get; private set; } + public long Id { get; private set; } /// /// Gets the name of the segment soil model. /// - public string SegmentSoilModelName { get; private set; } + public string Name { get; private set; } /// /// /// Gets the name of the segment soil model segment. /// public string SegmentName { get; private set; } /// - /// Gets or sets the list of geometry points. + /// Gets the list of geometry points. /// public List Geometry { get; private set; } /// - /// Gets or sets the list of . + /// Gets the list of . /// - public List StochasticSoilProfileProbabilities { get; private set; } + public List StochasticSoilProfiles { get; private set; } } } \ No newline at end of file