Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs =================================================================== diff -u -r8d1fe58f784199e4b36e754dede5846a3189db42 -rc7b83164bc8b8843272a439d9237f011f4284a1c --- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationService.cs) (revision 8d1fe58f784199e4b36e754dede5846a3189db42) +++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationService.cs) (revision c7b83164bc8b8843272a439d9237f011f4284a1c) @@ -45,15 +45,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(WaveImpactAsphaltCoverWaveConditionsCalculation calculation, RoundedDouble assessmentLevel, - string hydraulicBoundaryDatabaseFilePath, - string preprocessorDirectory, + HydraulicBoundaryDatabase hydraulicBoundaryDatabase, double norm) { if (calculation == null) @@ -63,8 +61,7 @@ return ValidateWaveConditionsInput(calculation.InputParameters, assessmentLevel, - hydraulicBoundaryDatabaseFilePath, - preprocessorDirectory, + hydraulicBoundaryDatabase, norm, Resources.WaveConditionsCalculationService_ValidateInput_default_DesignWaterLevel_name); }