Index: Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/CustomFailureMechanismSectionResult.cs
===================================================================
diff -u -r41fac7fff0a505c08945108d795dcb877f10b816 -r8abb584035c1788f6e1d92985da399a9921e3a09
--- Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/CustomFailureMechanismSectionResult.cs (.../CustomFailureMechanismSectionResult.cs) (revision 41fac7fff0a505c08945108d795dcb877f10b816)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/CustomFailureMechanismSectionResult.cs (.../CustomFailureMechanismSectionResult.cs) (revision 8abb584035c1788f6e1d92985da399a9921e3a09)
@@ -36,11 +36,6 @@
public CustomFailureMechanismSectionResult(FailureMechanismSection section) : base(section) { }
///
- /// Gets or sets the state of the assessment layer one.
- ///
- public bool AssessmentLayerOne { get; set; }
-
- ///
/// Gets the value of assessment layer two a.
///
public RoundedDouble AssessmentLayerTwoA { get; set; }
Index: Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/FailureMechanismSectionResult.cs
===================================================================
diff -u -r64d5609bb2912cd52dc74deffdd189222e240599 -r8abb584035c1788f6e1d92985da399a9921e3a09
--- Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/FailureMechanismSectionResult.cs (.../FailureMechanismSectionResult.cs) (revision 64d5609bb2912cd52dc74deffdd189222e240599)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/FailureMechanismSectionResult.cs (.../FailureMechanismSectionResult.cs) (revision 8abb584035c1788f6e1d92985da399a9921e3a09)
@@ -23,6 +23,11 @@
}
///
+ /// Gets or sets the state of the assessment layer one.
+ ///
+ public bool AssessmentLayerOne { get; set; }
+
+ ///
/// Gets the encapsulated .
///
public FailureMechanismSection Section { get; private set; }
Index: Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/SimpleFailureMechanismSectionResult.cs
===================================================================
diff -u -r41fac7fff0a505c08945108d795dcb877f10b816 -r8abb584035c1788f6e1d92985da399a9921e3a09
--- Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/SimpleFailureMechanismSectionResult.cs (.../SimpleFailureMechanismSectionResult.cs) (revision 41fac7fff0a505c08945108d795dcb877f10b816)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/SimpleFailureMechanismSectionResult.cs (.../SimpleFailureMechanismSectionResult.cs) (revision 8abb584035c1788f6e1d92985da399a9921e3a09)
@@ -36,11 +36,6 @@
public SimpleFailureMechanismSectionResult(FailureMechanismSection section) : base(section) { }
///
- /// Gets or sets the state of the assessment layer one.
- ///
- public bool AssessmentLayerOne { get; set; }
-
- ///
/// Gets the value of assessment layer two a.
///
public AssessmentLayerTwoAResult AssessmentLayerTwoA { get; set; }
Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/FailureMechanismResultViewTest.cs
===================================================================
diff -u -r80744f9014a001284116723df29bab8b319c38b7 -r8abb584035c1788f6e1d92985da399a9921e3a09
--- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/FailureMechanismResultViewTest.cs (.../FailureMechanismResultViewTest.cs) (revision 80744f9014a001284116723df29bab8b319c38b7)
+++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/FailureMechanismResultViewTest.cs (.../FailureMechanismResultViewTest.cs) (revision 8abb584035c1788f6e1d92985da399a9921e3a09)
@@ -152,12 +152,14 @@
Assert.AreEqual(2, rows.Count);
var cells = rows[0].Cells;
- Assert.AreEqual(1, cells.Count);
+ Assert.AreEqual(2, cells.Count);
Assert.AreEqual("Section 1", cells[nameColumnIndex].FormattedValue);
+ Assert.AreEqual(false, cells[assessmentLayerOneIndex].FormattedValue);
cells = rows[1].Cells;
- Assert.AreEqual(1, cells.Count);
+ Assert.AreEqual(2, cells.Count);
Assert.AreEqual("Section 2", cells[nameColumnIndex].FormattedValue);
+ Assert.AreEqual(false, cells[assessmentLayerOneIndex].FormattedValue);
}
}
Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResult.cs
===================================================================
diff -u -rea99af5c043eadf5c2ba83b82a847ae009181191 -r8abb584035c1788f6e1d92985da399a9921e3a09
--- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResult.cs (.../GrassCoverErosionInwardsFailureMechanismSectionResult.cs) (revision ea99af5c043eadf5c2ba83b82a847ae009181191)
+++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResult.cs (.../GrassCoverErosionInwardsFailureMechanismSectionResult.cs) (revision 8abb584035c1788f6e1d92985da399a9921e3a09)
@@ -30,11 +30,6 @@
{ }
///
- /// Gets or sets the state of the assessment layer one.
- ///
- public bool AssessmentLayerOne { get; set; }
-
- ///
/// Gets the value of assessment layer two a.
///
public RoundedDouble AssessmentLayerTwoA { get; set; }
Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingFailureMechanismSectionResult.cs
===================================================================
diff -u -r41ec92d6f4d837d071057f6a1746b05d1dc4f3b8 -r8abb584035c1788f6e1d92985da399a9921e3a09
--- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingFailureMechanismSectionResult.cs (.../PipingFailureMechanismSectionResult.cs) (revision 41ec92d6f4d837d071057f6a1746b05d1dc4f3b8)
+++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingFailureMechanismSectionResult.cs (.../PipingFailureMechanismSectionResult.cs) (revision 8abb584035c1788f6e1d92985da399a9921e3a09)
@@ -45,11 +45,6 @@
}
///
- /// Gets or sets the state of the assessment layer one.
- ///
- public bool AssessmentLayerOne { get; set; }
-
- ///
/// Gets the value of assessment layer two a.
///
public RoundedDouble AssessmentLayerTwoA