Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInput.cs =================================================================== diff -u -re9c2bf6e6c4d2ed9217597a115d09be4f3974901 -r50fc099174271a6f72ed94a8f024cd5377b37a53 --- Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInput.cs (.../WaveConditionsInput.cs) (revision e9c2bf6e6c4d2ed9217597a115d09be4f3974901) +++ Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInput.cs (.../WaveConditionsInput.cs) (revision 50fc099174271a6f72ed94a8f024cd5377b37a53) @@ -49,8 +49,9 @@ /// /// Creates a new instance of . /// - public WaveConditionsInput() + public WaveConditionsInput(WaveConditionsRevetment revetmentType) { + RevetmentType = revetmentType; orientation = new RoundedDouble(2); upperBoundaryRevetment = new RoundedDouble(2, double.NaN); @@ -63,6 +64,11 @@ } /// + /// Gets the type of the revetment. + /// + public WaveConditionsRevetment RevetmentType { get; private set; } + + /// /// Gets or sets the hydraulic boundary location from which to use the assessment level. /// public HydraulicBoundaryLocation HydraulicBoundaryLocation { get; set; } @@ -351,7 +357,7 @@ { if (foreshoreProfile == null) { - Orientation = (RoundedDouble)0.0; + Orientation = (RoundedDouble) 0.0; UseForeshore = false; UseBreakWater = false; BreakWater = GetDefaultBreakWater();