Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Configurations/WaveConditionsCalculationConfiguration.cs
===================================================================
diff -u -rf03b47d0d73983de35188874a094ae07f1ea13fa -r681fe6f5c04ea2acdb99801dd749a11a174d5b42
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Configurations/WaveConditionsCalculationConfiguration.cs (.../WaveConditionsCalculationConfiguration.cs) (revision f03b47d0d73983de35188874a094ae07f1ea13fa)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Configurations/WaveConditionsCalculationConfiguration.cs (.../WaveConditionsCalculationConfiguration.cs) (revision 681fe6f5c04ea2acdb99801dd749a11a174d5b42)
@@ -42,12 +42,12 @@
}
///
- /// Gets the name of the hydraulic boundary location of the calculation.
+ /// Gets or sets the name of the hydraulic boundary location of the calculation.
///
- public string HydraulicBoundaryLocation { get; set; }
+ public string HydraulicBoundaryLocationName { get; set; }
///
- /// Gets the upper boundary of the revetment of the calculation.
+ /// Gets or sets the upper boundary of the revetment of the calculation.
///
public double? UpperBoundaryRevetment { get; set; }
@@ -57,27 +57,27 @@
public double? LowerBoundaryRevetment { get; set; }
///
- /// Gets the upper boundary of the water levels of the calculation.
+ /// Gets or sets the upper boundary of the water levels of the calculation.
///
public double? UpperBoundaryWaterLevels { get; set; }
///
- /// Gets the lower boundary of the water levels of the calculation.
+ /// Gets or sets the lower boundary of the water levels of the calculation.
///
public double? LowerBoundaryWaterLevels { get; set; }
///
- /// Gets the step size of the calculation.
+ /// Gets or sets the step size of the calculation.
///
public ConfigurationWaveConditionsInputStepSize? StepSize { get; set; }
///
- /// Gets the name of the foreshore profile of the calculation.
+ /// Gets or sets the id of the foreshore profile of the calculation.
///
- public string ForeshoreProfile { get; set; }
+ public string ForeshoreProfileId { get; set; }
///
- /// Gets the orientation of the calculation.
+ /// Gets or sets the orientation of the calculation.
///
public double? Orientation { get; set; }
@@ -100,7 +100,7 @@
{
if (value == null)
{
- throw new ArgumentNullException(nameof(value), @"Name is required for a structure calculation configuration.");
+ throw new ArgumentNullException(nameof(value), @"Name is required for a calculation configuration.");
}
name = value;
}