Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/DesignWaterLevelLocationsProperties.cs =================================================================== diff -u -r35e1698004b87d0434fdf0b65d19b65783da9eea -r63ca446f378484b5dc555b2db50b77f8ff94fa7b --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/DesignWaterLevelLocationsProperties.cs (.../DesignWaterLevelLocationsProperties.cs) (revision 35e1698004b87d0434fdf0b65d19b65783da9eea) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/DesignWaterLevelLocationsProperties.cs (.../DesignWaterLevelLocationsProperties.cs) (revision 63ca446f378484b5dc555b2db50b77f8ff94fa7b) @@ -38,7 +38,7 @@ public class DesignWaterLevelLocationsProperties : HydraulicBoundaryLocationsProperties { /// - /// Creates a new instance of . + /// Creates a new instance of . /// /// The list of hydraulic boundary location calculations to set as data. /// Thrown when is null. @@ -49,11 +49,11 @@ [ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))] [ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.HydraulicBoundaryDatabase_Locations_DisplayName))] [ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.HydraulicBoundaryDatabase_Locations_Description))] - public DesignWaterLevelLocationProperties[] Locations + public DesignWaterLevelCalculationProperties[] Locations { get { - return data.Select(calculation => new DesignWaterLevelLocationProperties(calculation)).ToArray(); + return data.Select(calculation => new DesignWaterLevelCalculationProperties(calculation)).ToArray(); } } }