Index: Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationActivity.cs =================================================================== diff -u -rf70611f9af51a6ffc8cb4d8d28d1ea806104937b -rcd7078972189cf51d899754097ef3cbc0ddc26ee --- Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationActivity.cs (.../WaveHeightCalculationActivity.cs) (revision f70611f9af51a6ffc8cb4d8d28d1ea806104937b) +++ Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationActivity.cs (.../WaveHeightCalculationActivity.cs) (revision cd7078972189cf51d899754097ef3cbc0ddc26ee) @@ -33,7 +33,7 @@ public class WaveHeightCalculationActivity : HydraRingActivityBase { private readonly HydraulicBoundaryLocation hydraulicBoundaryLocation; - private readonly double norm; + private readonly double returnPeriod; private readonly string hydraulicBoundaryDatabaseFilePath; private readonly string ringId; private readonly ICalculationMessageProvider messageProvider; @@ -45,14 +45,14 @@ /// The to perform the calculation for. /// The HLCD file that should be used for performing the calculation. /// The id of the ring to perform the calculation for. - /// The norm to use during the calculation. + /// The return period to use during the calculation. /// The provider of the messages to use during the calculation. /// Thrown when /// or is null. public WaveHeightCalculationActivity(HydraulicBoundaryLocation hydraulicBoundaryLocation, string hydraulicBoundaryDatabaseFilePath, string ringId, - double norm, + double returnPeriod, ICalculationMessageProvider messageProvider) { if (hydraulicBoundaryLocation == null) @@ -70,7 +70,7 @@ this.hydraulicBoundaryDatabaseFilePath = hydraulicBoundaryDatabaseFilePath; this.ringId = ringId; - this.norm = norm; + this.returnPeriod = returnPeriod; Name = messageProvider.GetActivityName(hydraulicBoundaryLocation.Name); calculationService = new WaveHeightCalculationService(); @@ -98,7 +98,7 @@ hydraulicBoundaryLocation, hydraulicBoundaryDatabaseFilePath, ringId, - norm, + returnPeriod, messageProvider); } }