Index: Ringtoets/Common/src/Ringtoets.Common.Service/DesignWaterLevelCalculationService.cs =================================================================== diff -u -r1513447d61c0a667d233af5da6ba0480ffe5c3c3 -rda7bb9a6d96d7118d6dcdc2ee17a11d5b43f44c7 --- Ringtoets/Common/src/Ringtoets.Common.Service/DesignWaterLevelCalculationService.cs (.../DesignWaterLevelCalculationService.cs) (revision 1513447d61c0a667d233af5da6ba0480ffe5c3c3) +++ Ringtoets/Common/src/Ringtoets.Common.Service/DesignWaterLevelCalculationService.cs (.../DesignWaterLevelCalculationService.cs) (revision da7bb9a6d96d7118d6dcdc2ee17a11d5b43f44c7) @@ -236,10 +236,10 @@ e.Message)); } - HydraulicBoundaryLocationOutput hydraulicBoundaryLocationOutput = CreateHydraulicBoundaryLocationOutput( + HydraulicBoundaryLocationCalculationOutput hydraulicBoundaryLocationCalculationOutput = CreateOutput( messageProvider, hydraulicBoundaryLocation.Name, calculationInput.Beta, norm, calculator.Converged, generalResult); - hydraulicBoundaryLocationCalculation.Output = hydraulicBoundaryLocationOutput; + hydraulicBoundaryLocationCalculation.Output = hydraulicBoundaryLocationCalculationOutput; } /// @@ -277,15 +277,15 @@ /// The target probability for the calculation. /// The value indicating whether the calculation converged. /// The general result with illustration points. - /// A . + /// A . /// Thrown when /// or the calculated probability falls outside the [0.0, 1.0] range and is not . - private HydraulicBoundaryLocationOutput CreateHydraulicBoundaryLocationOutput(ICalculationMessageProvider messageProvider, - string hydraulicBoundaryLocationName, - double targetReliability, - double targetProbability, - bool? calculatorConverged, - GeneralResult generalResult) + private HydraulicBoundaryLocationCalculationOutput CreateOutput(ICalculationMessageProvider messageProvider, + string hydraulicBoundaryLocationName, + double targetReliability, + double targetProbability, + bool? calculatorConverged, + GeneralResult generalResult) { double designWaterLevel = calculator.DesignWaterLevel; double reliability = calculator.ReliabilityIndex; @@ -298,10 +298,10 @@ log.Warn(messageProvider.GetCalculatedNotConvergedMessage(hydraulicBoundaryLocationName)); } - return new HydraulicBoundaryLocationOutput(designWaterLevel, targetProbability, - targetReliability, probability, reliability, - converged, - generalResult); + return new HydraulicBoundaryLocationCalculationOutput(designWaterLevel, targetProbability, + targetReliability, probability, reliability, + converged, + generalResult); } ///