Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Commands/IHydraulicBoundaryLocationCalculationCommandHandler.cs =================================================================== diff -u -r161308cb864a66713f62357c6bcdb6ede03b619f -r68fb2bea16670fc88e626118a808560690610e57 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Commands/IHydraulicBoundaryLocationCalculationCommandHandler.cs (.../IHydraulicBoundaryLocationCalculationCommandHandler.cs) (revision 161308cb864a66713f62357c6bcdb6ede03b619f) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Commands/IHydraulicBoundaryLocationCalculationCommandHandler.cs (.../IHydraulicBoundaryLocationCalculationCommandHandler.cs) (revision 68fb2bea16670fc88e626118a808560690610e57) @@ -19,7 +19,9 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using System.Collections.Generic; +using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.HydraRing.Data; namespace Ringtoets.Integration.Forms.Commands @@ -33,15 +35,19 @@ /// /// Performs the calculation for all . /// + /// The assessment section. /// The objects to calculate /// the for. - void CalculateDesignWaterLevels(IEnumerable locations); + /// Thrown when any input argument is null. + void CalculateDesignWaterLevels(IAssessmentSection assessmentSection, IEnumerable locations); /// /// Performs the calculation for all . /// + /// The assessment section. /// The objects to calculate /// the for. - void CalculateWaveHeights(IEnumerable locations); + /// Thrown when any input argument is null. + void CalculateWaveHeights(IAssessmentSection assessmentSection, IEnumerable locations); } } \ No newline at end of file