Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/WaveConditions/WaveConditionsCosineInput.cs =================================================================== diff -u -r9dd80fda99e5d5b90931986f959b53c52da150b1 -r4570069d5b3d1ff54d5a2bfa6a14d083ac1450df --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/WaveConditions/WaveConditionsCosineInput.cs (.../WaveConditionsCosineInput.cs) (revision 9dd80fda99e5d5b90931986f959b53c52da150b1) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/WaveConditions/WaveConditionsCosineInput.cs (.../WaveConditionsCosineInput.cs) (revision 4570069d5b3d1ff54d5a2bfa6a14d083ac1450df) @@ -19,6 +19,8 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System.Collections.Generic; + namespace Ringtoets.HydraRing.Calculation.Data.Input.WaveConditions { /// @@ -32,7 +34,12 @@ /// The id of the section to use during the calculation. /// The id of the hydraulic station to use during the calculation. /// The norm to use during the calculation. - public WaveConditionsCosineInput(int sectionId, long hydraulicBoundaryLocationId, double norm) : base(sectionId, hydraulicBoundaryLocationId, norm) {} + /// The foreland points to use during the calculation. + /// The break water to use during the calculation. + public WaveConditionsCosineInput(int sectionId, long hydraulicBoundaryLocationId, double norm, + IEnumerable hydraRingForelandPoints, + HydraRingBreakWater hydraRingBreakWater) + : base(sectionId, hydraulicBoundaryLocationId, norm, hydraRingForelandPoints, hydraRingBreakWater) {} public override int? GetSubMechanismModelId(int subMechanismId) {