Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Primitives/MacroStabilityInwardsSoilProfile1D.cs
===================================================================
diff -u -r677ec9937ae7eff73a09bf937804ad22e0dc5a4b -r12b385b14eb734d1b09fbcf011b738cbda145205
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Primitives/MacroStabilityInwardsSoilProfile1D.cs (.../MacroStabilityInwardsSoilProfile1D.cs) (revision 677ec9937ae7eff73a09bf937804ad22e0dc5a4b)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Primitives/MacroStabilityInwardsSoilProfile1D.cs (.../MacroStabilityInwardsSoilProfile1D.cs) (revision 12b385b14eb734d1b09fbcf011b738cbda145205)
@@ -54,7 +54,8 @@
///
/// Thrown when or
/// is null.
- public MacroStabilityInwardsSoilProfile1D(string name, double bottom, IEnumerable layers, SoilProfileType sourceProfileType, long soilProfileId)
+ public MacroStabilityInwardsSoilProfile1D(string name, double bottom, IEnumerable layers,
+ SoilProfileType sourceProfileType, long soilProfileId)
{
Name = name;
Bottom = bottom;
@@ -74,26 +75,6 @@
public double Bottom { get; }
///
- /// Gets the name of .
- ///
- /// Thrown when the value is null.
- public string Name
- {
- get
- {
- return name;
- }
- private set
- {
- if (value == null)
- {
- throw new ArgumentNullException(nameof(value));
- }
- name = value;
- }
- }
-
- ///
/// Gets an ordered (by , descending) of
/// for the .
///
@@ -118,6 +99,26 @@
public SoilProfileType SoilProfileType { get; }
///
+ /// Gets the name of .
+ ///
+ /// Thrown when the value is null.
+ public string Name
+ {
+ get
+ {
+ return name;
+ }
+ private set
+ {
+ if (value == null)
+ {
+ throw new ArgumentNullException(nameof(value));
+ }
+ name = value;
+ }
+ }
+
+ ///
/// Gets the thickness of the given layer in the .
/// Thickness of a layer is determined by its top and the top of the layer below it.
///