Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/DesignWaterLevelLocationContextProperties.cs =================================================================== diff -u -r7a7526e4ff1bccf09b09fadcfd309a725c6494b9 -r3b31412e43e5ec5fb7f19f1f172a51c85a643455 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/DesignWaterLevelLocationContextProperties.cs (.../DesignWaterLevelLocationContextProperties.cs) (revision 7a7526e4ff1bccf09b09fadcfd309a725c6494b9) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/DesignWaterLevelLocationContextProperties.cs (.../DesignWaterLevelLocationContextProperties.cs) (revision 3b31412e43e5ec5fb7f19f1f172a51c85a643455) @@ -26,7 +26,6 @@ using Core.Common.Utils; using Core.Common.Utils.Attributes; using Ringtoets.Common.Data.Hydraulics; -using Ringtoets.Common.Forms.Helpers; using Ringtoets.Common.Forms.TypeConverters; using Ringtoets.Integration.Forms.Properties; using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources; @@ -80,8 +79,8 @@ [PropertyOrder(5)] [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_Result")] - [ResourcesDisplayName(typeof(Resources), "HydraulicBoundaryLocationOutput_TargetProbability_DisplayName")] - [ResourcesDescription(typeof(Resources), "HydraulicBoundaryLocationOutput_TargetProbability_Description")] + [ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), "HydraulicBoundaryLocationOutput_TargetProbability_DisplayName")] + [ResourcesDescription(typeof(RingtoetsCommonFormsResources), "HydraulicBoundaryLocationOutput_TargetProbability_Description")] [TypeConverter(typeof(FailureMechanismSectionResultNoProbabilityValueDoubleConverter))] public double TargetProbability { @@ -96,8 +95,8 @@ [PropertyOrder(6)] [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_Result")] - [ResourcesDisplayName(typeof(Resources), "HydraulicBoundaryLocationOutput_TargetReliability_DisplayName")] - [ResourcesDescription(typeof(Resources), "HydraulicBoundaryLocationOutput_TargetReliability_Description")] + [ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), "HydraulicBoundaryLocationOutput_TargetReliability_DisplayName")] + [ResourcesDescription(typeof(RingtoetsCommonFormsResources), "HydraulicBoundaryLocationOutput_TargetReliability_Description")] [TypeConverter(typeof(NoValueRoundedDoubleConverter))] public RoundedDouble TargetReliability { @@ -106,14 +105,14 @@ HydraulicBoundaryLocationOutput output = data.HydraulicBoundaryLocation.DesignWaterLevelOutput; return output != null ? output.TargetReliability - : (RoundedDouble)double.NaN; + : (RoundedDouble) double.NaN; } } [PropertyOrder(7)] [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_Result")] - [ResourcesDisplayName(typeof(Resources), "HydraulicBoundaryLocationOutput_CalculatedProbability_DisplayName")] - [ResourcesDescription(typeof(Resources), "HydraulicBoundaryLocationOutput_CalculatedProbability_Description")] + [ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), "HydraulicBoundaryLocationOutput_CalculatedProbability_DisplayName")] + [ResourcesDescription(typeof(RingtoetsCommonFormsResources), "HydraulicBoundaryLocationOutput_CalculatedProbability_Description")] [TypeConverter(typeof(FailureMechanismSectionResultNoProbabilityValueDoubleConverter))] public double CalculatedProbability { @@ -128,15 +127,15 @@ [PropertyOrder(8)] [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_Result")] - [ResourcesDisplayName(typeof(Resources), "HydraulicBoundaryLocationOutput_CalculatedReliability_DisplayName")] - [ResourcesDescription(typeof(Resources), "HydraulicBoundaryLocationOutput_CalculatedReliability_Description")] + [ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), "HydraulicBoundaryLocationOutput_CalculatedReliability_DisplayName")] + [ResourcesDescription(typeof(RingtoetsCommonFormsResources), "HydraulicBoundaryLocationOutput_CalculatedReliability_Description")] [TypeConverter(typeof(NoValueRoundedDoubleConverter))] public RoundedDouble CalculatedReliability { get { HydraulicBoundaryLocationOutput output = data.HydraulicBoundaryLocation.DesignWaterLevelOutput; - return output != null ? output.CalculatedReliability : (RoundedDouble)double.NaN; + return output != null ? output.CalculatedReliability : (RoundedDouble) double.NaN; } }