Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/PresentationObjects/HydraulicBoundaryDatabaseContext.cs =================================================================== diff -u -r70469282dce77d4fc9da5a17b13679bbe579c586 -rada2ff1d0c3040000061c1f77785d2875cc8f761 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/PresentationObjects/HydraulicBoundaryDatabaseContext.cs (.../HydraulicBoundaryDatabaseContext.cs) (revision 70469282dce77d4fc9da5a17b13679bbe579c586) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/PresentationObjects/HydraulicBoundaryDatabaseContext.cs (.../HydraulicBoundaryDatabaseContext.cs) (revision ada2ff1d0c3040000061c1f77785d2875cc8f761) @@ -21,7 +21,6 @@ using System; using Core.Common.Controls.PresentationObjects; -using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.Hydraulics; using Ringtoets.Integration.Data; @@ -36,16 +35,17 @@ /// Creates a new instance of . /// /// The that the belongs to. - /// The that the belongs to. + /// The assessment section that the belongs to. /// Thrown when any parameter is null. public HydraulicBoundaryDatabaseContext(HydraulicBoundaryDatabase wrappedData, - AssessmentSection assessmentSection) + AssessmentSection assessmentSection) : base(wrappedData) { if (assessmentSection == null) { throw new ArgumentNullException(nameof(assessmentSection)); } + AssessmentSection = assessmentSection; }