Index: Ringtoets/Common/src/Ringtoets.Common.Forms/GuiServices/IHydraulicBoundaryLocationCalculationGuiService.cs
===================================================================
diff -u -r06b2840a2bb64c0960c8ac29322b5a0971c73c77 -r1042a38d3663daeda5a8e1083edbc63a4b6aae94
--- Ringtoets/Common/src/Ringtoets.Common.Forms/GuiServices/IHydraulicBoundaryLocationCalculationGuiService.cs (.../IHydraulicBoundaryLocationCalculationGuiService.cs) (revision 06b2840a2bb64c0960c8ac29322b5a0971c73c77)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/GuiServices/IHydraulicBoundaryLocationCalculationGuiService.cs (.../IHydraulicBoundaryLocationCalculationGuiService.cs) (revision 1042a38d3663daeda5a8e1083edbc63a4b6aae94)
@@ -21,7 +21,6 @@
using System;
using System.Collections.Generic;
-using Core.Common.Base;
using Ringtoets.Common.Service.MessageProviders;
using Ringtoets.HydraRing.Data;
@@ -36,31 +35,29 @@
///
/// Performs the calculation for all .
///
- /// The message provider for the services.
/// The path to the hydraulic boundaries database.
- /// The object to be notified when the calculation was successful.
/// The objects to calculate
- /// the for.
+ /// the for.
/// The id of the ring to perform the calculation for.
/// The norm to use during the calculation.
- /// Thrown when , ,
+ /// The message provider for the services.
+ /// True if the observers should be notified; false if otherwise
+ /// Thrown when
/// or is null.
- void CalculateDesignWaterLevels(ICalculationMessageProvider messageProvider, string hydraulicBoundaryDatabasePath, IObservable observable,
- IEnumerable locations, string ringId, double norm);
+ bool CalculateDesignWaterLevels(string hydraulicBoundaryDatabasePath, IEnumerable locations, string ringId, double norm, ICalculationMessageProvider messageProvider);
///
/// Performs the calculation for all .
///
- /// The message provider for the services.
/// The path to the hydraulic boundaries database.
- /// The object to be notified when the calculation was successful.
/// The objects to calculate
- /// the for.
+ /// the for.
/// The id of the ring to perform the calculation for.
/// The norm to use during the calculation.
- /// Thrown when , ,
+ /// The message provider for the services.
+ /// True if the observers should be notified; false if otherwise
+ /// Thrown when
/// or is null.
- void CalculateWaveHeights(ICalculationMessageProvider messageProvider, string hydraulicBoundaryDatabasePath, IObservable observable,
- IEnumerable locations, string ringId, double norm);
+ bool CalculateWaveHeights(string hydraulicBoundaryDatabasePath, IEnumerable locations, string ringId, double norm, ICalculationMessageProvider messageProvider);
}
}
\ No newline at end of file