Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationServiceOutput.cs
===================================================================
diff -u -ra34dbc4a2d6b3689cde30ea81370912cdaa858ce -r08adf25cc7efeb88759bcba90e9881466fbf60f9
--- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationServiceOutput.cs (.../GrassCoverErosionInwardsCalculationServiceOutput.cs) (revision a34dbc4a2d6b3689cde30ea81370912cdaa858ce)
+++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationServiceOutput.cs (.../GrassCoverErosionInwardsCalculationServiceOutput.cs) (revision 08adf25cc7efeb88759bcba90e9881466fbf60f9)
@@ -33,7 +33,7 @@
/// The wave height result of the calculation.
/// The value indicating whether overtopping was dominant in the calculation.
/// The dike height result of the calculation.
- public GrassCoverErosionInwardsCalculationServiceOutput(double beta, double waveHeight, bool isOvertoppingDominant, double dikeHeight = double.NaN)
+ public GrassCoverErosionInwardsCalculationServiceOutput(double beta, double waveHeight, bool isOvertoppingDominant, double? dikeHeight)
{
Beta = beta;
WaveHeight = waveHeight;
@@ -60,6 +60,6 @@
///
/// Gets the dike height that was a result of the dike height calculation.
///
- public double DikeHeight { get; private set; }
+ public double? DikeHeight { get; private set; }
}
}
\ No newline at end of file