Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Data/HydraulicBoundaryLocation.cs
===================================================================
diff -u -r3d995a76fbe93cf9801596e6b959e7f5bcde5805 -r0a3116108a778a2c802ca6c56ec7edfaebbc4368
--- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Data/HydraulicBoundaryLocation.cs (.../HydraulicBoundaryLocation.cs) (revision 3d995a76fbe93cf9801596e6b959e7f5bcde5805)
+++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Data/HydraulicBoundaryLocation.cs (.../HydraulicBoundaryLocation.cs) (revision 0a3116108a778a2c802ca6c56ec7edfaebbc4368)
@@ -72,7 +72,7 @@
public Point2D Location { get; private set; }
///
- /// Gets the design water level of .
+ /// Gets or sets the design water level of .
///
public RoundedDouble DesignWaterLevel
{
@@ -87,7 +87,7 @@
}
///
- /// Gets the wave height of .
+ /// Gets or sets the wave height of .
///
public RoundedDouble WaveHeight
{
Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs
===================================================================
diff -u -r06abcaadc2936c0bf3fde73916c051f37f698505 -r0a3116108a778a2c802ca6c56ec7edfaebbc4368
--- Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs (.../DerivedPipingInput.cs) (revision 06abcaadc2936c0bf3fde73916c051f37f698505)
+++ Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs (.../DerivedPipingInput.cs) (revision 0a3116108a778a2c802ca6c56ec7edfaebbc4368)
@@ -49,7 +49,7 @@
{
if (input == null)
{
- throw new ArgumentNullException("input", "Cannot create DerivedPipingInput without PipingInput.");
+ throw new ArgumentNullException("input", @"Cannot create DerivedPipingInput without PipingInput.");
}
this.input = input;
}
@@ -63,7 +63,7 @@
{
return input.HydraulicBoundaryLocation == null ?
new RoundedDouble(2, double.NaN) :
- new RoundedDouble(2, input.HydraulicBoundaryLocation.DesignWaterLevel);
+ input.HydraulicBoundaryLocation.DesignWaterLevel;
}
}