Index: Ringtoets/Common/src/Ringtoets.Common.Forms/GuiServices/IHydraulicBoundaryLocationCalculationGuiService.cs
===================================================================
diff -u -r915001caffacbbee15c0e3bf449072245bc5f509 -r75ac52f6f7e203e77dd212e6c32d68e7e58c28b2
--- Ringtoets/Common/src/Ringtoets.Common.Forms/GuiServices/IHydraulicBoundaryLocationCalculationGuiService.cs (.../IHydraulicBoundaryLocationCalculationGuiService.cs) (revision 915001caffacbbee15c0e3bf449072245bc5f509)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/GuiServices/IHydraulicBoundaryLocationCalculationGuiService.cs (.../IHydraulicBoundaryLocationCalculationGuiService.cs) (revision 75ac52f6f7e203e77dd212e6c32d68e7e58c28b2)
@@ -21,6 +21,7 @@
using System;
using System.Collections.Generic;
+using Core.Common.Base;
using Ringtoets.HydraRing.Data;
namespace Ringtoets.Common.Forms.GuiServices
@@ -34,27 +35,29 @@
///
/// Performs the calculation for all .
///
- /// The hydraulic boundaries database.
- /// The objects to calculate
+ /// The path to the hydraulic boundaries database.
+ /// The object to be notified when the calculation was successful.
+ /// The objects to calculate
/// the for.
/// The id of the ring to perform the calculation for.
/// The norm to use during the calculation.
- /// Thrown when
+ /// Thrown when
/// or is null.
- void CalculateDesignWaterLevels(HydraulicBoundaryDatabase hydraulicBoundaryDatabase,
- IEnumerable locations, string ringId, int norm);
+ void CalculateDesignWaterLevels(string hydraulicBoundaryDatabasePath, IObservable observable,
+ IEnumerable locations, string ringId, double norm);
///
/// Performs the calculation for all .
///
- /// The hydraulic boundaries database.
- /// The objects to calculate
+ /// The path to the hydraulic boundaries database.
+ /// The object to be notified when the calculation was successful.
+ /// The objects to calculate
/// the for.
/// The id of the ring to perform the calculation for.
/// The norm to use during the calculation.
- /// Thrown when
+ /// Thrown when
/// or is null.
- void CalculateWaveHeights(HydraulicBoundaryDatabase hydraulicBoundaryDatabase,
- IEnumerable locations, string ringId, int norm);
+ void CalculateWaveHeights(string hydraulicBoundaryDatabasePath, IObservable observable,
+ IEnumerable locations, string ringId, double norm);
}
}
\ No newline at end of file