Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/DesignWaterLevelLocationsView.cs =================================================================== diff -u -r802ea30d1fe8fbae93e58dff9ab054dbabca11ae -r298af52e9de68d5beed50a88ec11be5bce1fc783 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/DesignWaterLevelLocationsView.cs (.../DesignWaterLevelLocationsView.cs) (revision 802ea30d1fe8fbae93e58dff9ab054dbabca11ae) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/DesignWaterLevelLocationsView.cs (.../DesignWaterLevelLocationsView.cs) (revision 298af52e9de68d5beed50a88ec11be5bce1fc783) @@ -34,7 +34,7 @@ /// /// View for the with . /// - public partial class DesignWaterLevelLocationsView : HydraulicBoundaryLocationsView + public partial class DesignWaterLevelLocationsView : HydraulicBoundaryLocationsView { private readonly Observer assessmentSectionObserver; private readonly Observer hydraulicBoundaryDatabaseObserver; @@ -95,15 +95,15 @@ } } - protected override DesignWaterLevelLocationRow CreateNewRow(HydraulicBoundaryLocation location) + protected override HydraulicBoundaryLocationRow CreateNewRow(HydraulicBoundaryLocation location) { - return new DesignWaterLevelLocationRow(location); + return new HydraulicBoundaryLocationRow(location, location.DesignWaterLevelCalculation); } protected override void InitializeDataGridView() { base.InitializeDataGridView(); - dataGridViewControl.AddTextBoxColumn(nameof(DesignWaterLevelLocationRow.DesignWaterLevel), + dataGridViewControl.AddTextBoxColumn(nameof(HydraulicBoundaryLocationRow.Result), Resources.HydraulicBoundaryDatabase_Location_DesignWaterLevel_DisplayName); }