Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Overtopping/OvertoppingCalculationInput.cs =================================================================== diff -u -r9f08122750310ba06e28e435c3c4bdf5e873d99b -rb9f6d46631bdb16c2f1e65e791dd31e9380ccd6e --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Overtopping/OvertoppingCalculationInput.cs (.../OvertoppingCalculationInput.cs) (revision 9f08122750310ba06e28e435c3c4bdf5e873d99b) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Overtopping/OvertoppingCalculationInput.cs (.../OvertoppingCalculationInput.cs) (revision b9f6d46631bdb16c2f1e65e791dd31e9380ccd6e) @@ -31,7 +31,7 @@ private readonly HydraRingSection section; private readonly IEnumerable profilePoints; private readonly IEnumerable forelandPoints; - private readonly IEnumerable breakwaters; + private readonly IEnumerable breakWaters; private readonly double dikeHeight; private readonly double criticalOvertoppingMean; @@ -47,13 +47,13 @@ /// The standard deviation of the critical overtopping to use during the calculation. /// The profile points to use during the calculation. /// The foreland points to use during the calculation. - /// The break water to use during the calculation. + /// The break water to use during the calculation. public OvertoppingCalculationInput(int hydraulicBoundaryLocationId, HydraRingSection hydraRingSection, double hydraRingDikeHeight, double hydraRingCriticalOvertoppingMean, double hydraRingCriticalOvertoppingStandardDeviation, - IEnumerable hydraRingProfilePoints, + IEnumerable hydraRingProfilePoints, IEnumerable hydraRingForelandPoints, - IEnumerable hydraRingBreakwaters) + IEnumerable hydraRingBreakWaters) : base(hydraulicBoundaryLocationId) { section = hydraRingSection; @@ -62,7 +62,7 @@ criticalOvertoppingStandardDeviation = hydraRingCriticalOvertoppingStandardDeviation; profilePoints = hydraRingProfilePoints; forelandPoints = hydraRingForelandPoints; - breakwaters = hydraRingBreakwaters; + breakWaters = hydraRingBreakWaters; } public override HydraRingFailureMechanismType FailureMechanismType @@ -105,11 +105,11 @@ } } - public override IEnumerable BreakWaters + public override IEnumerable BreakWaters { get { - return breakwaters; + return breakWaters; } }