Index: Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Service/GrassCoverErosionOutwardsWaveConditionsCalculationService.cs =================================================================== diff -u -r372359d85db26796ffe575f467468879197c1876 -r3f4f4c8eff83900fe1d99add5cf2ccc7725aab1d --- Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Service/GrassCoverErosionOutwardsWaveConditionsCalculationService.cs (.../GrassCoverErosionOutwardsWaveConditionsCalculationService.cs) (revision 372359d85db26796ffe575f467468879197c1876) +++ Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Service/GrassCoverErosionOutwardsWaveConditionsCalculationService.cs (.../GrassCoverErosionOutwardsWaveConditionsCalculationService.cs) (revision 3f4f4c8eff83900fe1d99add5cf2ccc7725aab1d) @@ -47,12 +47,14 @@ /// 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 target probability to validate. /// true if there were no validation errors; false otherwise. /// Thrown when is null. public static bool Validate(GrassCoverErosionOutwardsWaveConditionsCalculation calculation, RoundedDouble assessmentLevel, string hydraulicBoundaryDatabaseFilePath, - string preprocessorDirectory) + string preprocessorDirectory, + double targetProbability) { if (calculation == null) { @@ -63,6 +65,7 @@ assessmentLevel, hydraulicBoundaryDatabaseFilePath, preprocessorDirectory, + targetProbability, Resources.GrassCoverErosionOutwardsWaveConditionsCalculationService_LogMessage_DesignWaterLevel_name); } Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationService.cs =================================================================== diff -u -r372359d85db26796ffe575f467468879197c1876 -r3f4f4c8eff83900fe1d99add5cf2ccc7725aab1d --- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationService.cs (.../StabilityStoneCoverWaveConditionsCalculationService.cs) (revision 372359d85db26796ffe575f467468879197c1876) +++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationService.cs (.../StabilityStoneCoverWaveConditionsCalculationService.cs) (revision 3f4f4c8eff83900fe1d99add5cf2ccc7725aab1d) @@ -51,12 +51,14 @@ /// 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 target probability 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) + string preprocessorDirectory, + double targetProbability) { if (calculation == null) { @@ -67,6 +69,7 @@ assessmentLevel, hydraulicBoundaryDatabaseFilePath, preprocessorDirectory, + targetProbability, RingtoetsRevetmentsServicesResources.WaveConditionsCalculationService_ValidateInput_default_DesignWaterLevel_name); } Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs =================================================================== diff -u -r372359d85db26796ffe575f467468879197c1876 -r3f4f4c8eff83900fe1d99add5cf2ccc7725aab1d --- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationService.cs) (revision 372359d85db26796ffe575f467468879197c1876) +++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationService.cs) (revision 3f4f4c8eff83900fe1d99add5cf2ccc7725aab1d) @@ -47,12 +47,14 @@ /// 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 target probability 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) + string preprocessorDirectory, + double targetProbability) { if (calculation == null) { @@ -63,6 +65,7 @@ assessmentLevel, hydraulicBoundaryDatabaseFilePath, preprocessorDirectory, + targetProbability, Resources.WaveConditionsCalculationService_ValidateInput_default_DesignWaterLevel_name); }