Index: Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationActivity.cs =================================================================== diff -u -r915001caffacbbee15c0e3bf449072245bc5f509 -r75ac52f6f7e203e77dd212e6c32d68e7e58c28b2 --- Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationActivity.cs (.../WaveHeightCalculationActivity.cs) (revision 915001caffacbbee15c0e3bf449072245bc5f509) +++ Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationActivity.cs (.../WaveHeightCalculationActivity.cs) (revision 75ac52f6f7e203e77dd212e6c32d68e7e58c28b2) @@ -37,20 +37,20 @@ public class WaveHeightCalculationActivity : HydraRingActivity { private static readonly ILog log = LogManager.GetLogger(typeof(WaveHeightCalculationActivity)); - private readonly HydraulicBoundaryLocation hydraulicBoundaryLocation; - private readonly int norm; + private readonly IHydraulicBoundaryLocation hydraulicBoundaryLocation; + private readonly double norm; private readonly string hydraulicBoundaryDatabaseFilePath; private readonly string ringId; /// /// Creates a new instance of . /// - /// The to perform the calculation for. + /// 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. /// Thrown when is null. - public WaveHeightCalculationActivity(HydraulicBoundaryLocation hydraulicBoundaryLocation, string hydraulicBoundaryDatabaseFilePath, string ringId, int norm) + public WaveHeightCalculationActivity(IHydraulicBoundaryLocation hydraulicBoundaryLocation, string hydraulicBoundaryDatabaseFilePath, string ringId, double norm) { if (hydraulicBoundaryLocation == null) {