Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Commands/IHydraulicBoundaryLocationCalculationCommandHandler.cs
===================================================================
diff -u -r9312943e6ef9894811d9b0b87239af47f79205ec -r7a61196d689922cf6df102fb0d81c43267c7b22b
--- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Commands/IHydraulicBoundaryLocationCalculationCommandHandler.cs (.../IHydraulicBoundaryLocationCalculationCommandHandler.cs) (revision 9312943e6ef9894811d9b0b87239af47f79205ec)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Commands/IHydraulicBoundaryLocationCalculationCommandHandler.cs (.../IHydraulicBoundaryLocationCalculationCommandHandler.cs) (revision 7a61196d689922cf6df102fb0d81c43267c7b22b)
@@ -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