Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationService.cs
===================================================================
diff -u -r8d1fe58f784199e4b36e754dede5846a3189db42 -r5a312956919605087a6b402de1c8307680f9701f
--- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationService.cs (.../StabilityStoneCoverWaveConditionsCalculationService.cs) (revision 8d1fe58f784199e4b36e754dede5846a3189db42)
+++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationService.cs (.../StabilityStoneCoverWaveConditionsCalculationService.cs) (revision 5a312956919605087a6b402de1c8307680f9701f)
@@ -49,15 +49,13 @@
///
/// The for which to validate the values.
/// The assessment level to use for determining water levels.
- /// The file path of the hydraulic boundary database file which to validate.
- /// The preprocessor directory to validate.
+ /// The hydraulic boundary database to validate.
/// The norm to validate.
/// true if there were no validation errors; false otherwise.
/// Thrown when is null.
public static bool Validate(StabilityStoneCoverWaveConditionsCalculation calculation,
RoundedDouble assessmentLevel,
- string hydraulicBoundaryDatabaseFilePath,
- string preprocessorDirectory,
+ HydraulicBoundaryDatabase hydraulicBoundaryDatabase,
double norm)
{
if (calculation == null)
@@ -67,8 +65,7 @@
return ValidateWaveConditionsInput(calculation.InputParameters,
assessmentLevel,
- hydraulicBoundaryDatabaseFilePath,
- preprocessorDirectory,
+ hydraulicBoundaryDatabase,
norm,
RingtoetsRevetmentsServicesResources.WaveConditionsCalculationService_ValidateInput_default_DesignWaterLevel_name);
}