Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/WaveConditions/WaveConditionsTrapezoidInput.cs
===================================================================
diff -u -r4570069d5b3d1ff54d5a2bfa6a14d083ac1450df -r8818857bf54e26fcd900b3abdf07b999e359b3bc
--- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/WaveConditions/WaveConditionsTrapezoidInput.cs (.../WaveConditionsTrapezoidInput.cs) (revision 4570069d5b3d1ff54d5a2bfa6a14d083ac1450df)
+++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/WaveConditions/WaveConditionsTrapezoidInput.cs (.../WaveConditionsTrapezoidInput.cs) (revision 8818857bf54e26fcd900b3abdf07b999e359b3bc)
@@ -34,12 +34,25 @@
/// 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.
- /// The foreland points to use during the calculation.
- /// The break water to use during the calculation.
+ /// The foreland points to use during the calculation.
+ /// The break water to use during the calculation.
+ /// The water level to calculate the wave conditions for.
+ /// The a-value to use during the calculation.
+ /// The b-value to use during the calculation.
public WaveConditionsTrapezoidInput(int sectionId, long hydraulicBoundaryLocationId, double norm,
- IEnumerable hydraRingForelandPoints,
- HydraRingBreakWater hydraRingBreakWater)
- : base(sectionId, hydraulicBoundaryLocationId, norm, hydraRingForelandPoints, hydraRingBreakWater) {}
+ IEnumerable forelandPoints,
+ HydraRingBreakWater breakWater,
+ double waterLevel,
+ double a,
+ double b)
+ : base(sectionId,
+ hydraulicBoundaryLocationId,
+ norm,
+ forelandPoints,
+ breakWater,
+ waterLevel,
+ a,
+ b) {}
public override int? GetSubMechanismModelId(int subMechanismId)
{