Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Configurations/PipingCalculationConfiguration.cs
===================================================================
diff -u -r756064ca162892256021ac1616fe4680b2bba320 -r681fe6f5c04ea2acdb99801dd749a11a174d5b42
--- Ringtoets/Piping/src/Ringtoets.Piping.IO/Configurations/PipingCalculationConfiguration.cs (.../PipingCalculationConfiguration.cs) (revision 756064ca162892256021ac1616fe4680b2bba320)
+++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Configurations/PipingCalculationConfiguration.cs (.../PipingCalculationConfiguration.cs) (revision 681fe6f5c04ea2acdb99801dd749a11a174d5b42)
@@ -42,47 +42,47 @@
}
///
- /// Gets the assessment level of the piping calculation.
+ /// Gets or sets the assessment level of the piping calculation.
///
public double? AssessmentLevel { get; set; }
///
- /// Gets the name of the hydraulic boundary location of the piping calculation.
+ /// Gets or sets the name of the hydraulic boundary location of the piping calculation.
///
- public string HydraulicBoundaryLocation { get; set; }
+ public string HydraulicBoundaryLocationName { get; set; }
///
- /// Gets the name of the surface line of the piping calculation.
+ /// Gets or sets the name of the surface line of the piping calculation.
///
- public string SurfaceLine { get; set; }
+ public string SurfaceLineName { get; set; }
///
- /// Gets the l-coordinate of the entry point of the piping calculation.
+ /// Gets or sets the l-coordinate of the entry point of the piping calculation.
///
public double? EntryPointL { get; set; }
///
- /// Gets the l-coordinate of the exit point of the piping calculation.
+ /// Gets or sets the l-coordinate of the exit point of the piping calculation.
///
public double? ExitPointL { get; set; }
///
- /// Gets the name of the stochastic soil model of the piping calculation.
+ /// Gets or sets the name of the stochastic soil model of the piping calculation.
///
- public string StochasticSoilModel { get; set; }
+ public string StochasticSoilModelName { get; set; }
///
- /// Gets the name of the stochastic soil profile of the piping calculation.
+ /// Gets or sets the name of the stochastic soil profile of the piping calculation.
///
- public string StochasticSoilProfile { get; set; }
+ public string StochasticSoilProfileName { get; set; }
///
- /// Gets the configuration of the phreatic level exit of the piping calculation.
+ /// Gets or sets the configuration of the phreatic level exit of the piping calculation.
///
public StochastConfiguration PhreaticLevelExit{ get; set; }
///
- /// Gets the configuration of the damping factor exit of the piping calculation.
+ /// Gets or sets the configuration of the damping factor exit of the piping calculation.
///
public StochastConfiguration DampingFactorExit { 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;
}