Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/PresentationObjects/PipingContext.cs =================================================================== diff -u -ra9aafffab97152303562110b1d789bacb465ce24 -rcda9bb0707f49cfb8e685d3ec04da01240c73f26 --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/PresentationObjects/PipingContext.cs (.../PipingContext.cs) (revision a9aafffab97152303562110b1d789bacb465ce24) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/PresentationObjects/PipingContext.cs (.../PipingContext.cs) (revision cda9bb0707f49cfb8e685d3ec04da01240c73f26) @@ -49,7 +49,7 @@ protected PipingContext( T wrappedData, IEnumerable surfaceLines, - IEnumerable stochasticSoilModels, + IEnumerable stochasticSoilModels, IAssessmentSection assessmentSection) { AssertInputsAreNotNull(wrappedData, surfaceLines, stochasticSoilModels, assessmentSection); @@ -60,38 +60,23 @@ AssessmentSection = assessmentSection; } - public override bool Equals(object obj) - { - var context = obj as PipingContext; - if (context != null) - { - return WrappedData.Equals(context.WrappedData); - } - return base.Equals(obj); - } - - public override int GetHashCode() - { - return WrappedData.GetHashCode(); - } - /// /// Gets the available piping surface lines in order for the user to select one to /// set . /// public IEnumerable AvailablePipingSurfaceLines { get; private set; } /// - /// Gets the available stochastic soil models in order for the user to select a - /// to set . + /// Gets the available stochastic soil models in order for the user to select a and + /// to set and . /// public IEnumerable AvailableStochasticSoilModels { get; private set; } /// /// Gets the available hydraulic boundary locations in order for the user to select one to /// set . /// - public IEnumerable AvailableHydraulicBoundaryLocations + public IEnumerable AvailableHydraulicBoundaryLocations { get { @@ -113,6 +98,21 @@ /// public IAssessmentSection AssessmentSection { get; private set; } + public override bool Equals(object obj) + { + var context = obj as PipingContext; + if (context != null) + { + return WrappedData.Equals(context.WrappedData); + } + return base.Equals(obj); + } + + public override int GetHashCode() + { + return WrappedData.GetHashCode(); + } + /// /// Asserts the inputs are not null. ///