Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Views/FailureMechanismSectionRow.cs
===================================================================
diff -u -rc7765a155d2a99d3805285129b8253dd7e7516c5 -r449cc2a35f2b1c8dd406b26689c447a83fef43df
--- Ringtoets/Common/src/Ringtoets.Common.Forms/Views/FailureMechanismSectionRow.cs (.../FailureMechanismSectionRow.cs) (revision c7765a155d2a99d3805285129b8253dd7e7516c5)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/Views/FailureMechanismSectionRow.cs (.../FailureMechanismSectionRow.cs) (revision 449cc2a35f2b1c8dd406b26689c447a83fef43df)
@@ -21,6 +21,8 @@
using System;
using Core.Common.Base.Data;
+using Core.Common.Base.Geometry;
+using Ringtoets.Common.Data.AssessmentSection;
using Ringtoets.Common.Data.FailureMechanism;
namespace Ringtoets.Common.Forms.Views
@@ -53,6 +55,18 @@
public string Name { get; }
///
+ /// Gets the start of the section from the beginning of the reference line.
+ /// [km]
+ ///
+ public RoundedDouble SectionStart { get; }
+
+ ///
+ /// Gets the end of the section from the beginning of the reference line.
+ /// [km]
+ ///
+ public RoundedDouble SectionEnd { get; }
+
+ ///
/// Gets the length of the section.
/// [m]
///
Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/FailureMechanismSectionRowTest.cs
===================================================================
diff -u -r7a61fedc1bcd30f11aab867b154fab81f40380b0 -r449cc2a35f2b1c8dd406b26689c447a83fef43df
--- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/FailureMechanismSectionRowTest.cs (.../FailureMechanismSectionRowTest.cs) (revision 7a61fedc1bcd30f11aab867b154fab81f40380b0)
+++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/FailureMechanismSectionRowTest.cs (.../FailureMechanismSectionRowTest.cs) (revision 449cc2a35f2b1c8dd406b26689c447a83fef43df)
@@ -59,6 +59,8 @@
Assert.AreEqual(section.Name, sectionRow.Name);
Assert.AreEqual(2, sectionRow.Length.NumberOfDecimalPlaces);
Assert.AreEqual(section.Length, sectionRow.Length, sectionRow.Length.GetAccuracy());
+ Assert.AreEqual(0.0, sectionRow.SectionStart);
+ Assert.AreEqual(0.0, sectionRow.SectionEnd);
}
}
}
\ No newline at end of file