Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResult.cs =================================================================== diff -u -r711f6909f672eff30cea67489cb7372f01e7aff9 -rb6e0f8d41d92ed18c902138dd49cce6e703ee883 --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResult.cs (.../GrassCoverErosionInwardsFailureMechanismSectionResult.cs) (revision 711f6909f672eff30cea67489cb7372f01e7aff9) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResult.cs (.../GrassCoverErosionInwardsFailureMechanismSectionResult.cs) (revision b6e0f8d41d92ed18c902138dd49cce6e703ee883) @@ -20,7 +20,9 @@ // All rights reserved. using System; +using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; +using Ringtoets.Common.Data.Probability; namespace Ringtoets.GrassCoverErosionInwards.Data { @@ -57,5 +59,11 @@ /// to be representative for the whole section. /// public GrassCoverErosionInwardsCalculation Calculation { get; set; } + + protected override RoundedDouble ValidateAssessmentLayerThree(RoundedDouble value) + { + ProbabilityHelper.ValidateProbability(value, null, true); + return value; + } } } \ No newline at end of file