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);
}