Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresContext.cs
===================================================================
diff -u -r2545a8486f7c2820781ec3871125bdd8121622fd -rbc9af05d3eb0d40e5620b96f537ed92f3ae52e94
--- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresContext.cs (.../HeightStructuresContext.cs) (revision 2545a8486f7c2820781ec3871125bdd8121622fd)
+++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresContext.cs (.../HeightStructuresContext.cs) (revision bc9af05d3eb0d40e5620b96f537ed92f3ae52e94)
@@ -43,7 +43,9 @@
/// belong to.
/// Thrown when any of the input arguments
/// are null.
- public HeightStructuresContext(ObservableList heightStructures, HeightStructuresFailureMechanism failureMechanism, IAssessmentSection assessmentSection)
+ public HeightStructuresContext(ObservableList heightStructures,
+ HeightStructuresFailureMechanism failureMechanism,
+ IAssessmentSection assessmentSection)
: base(heightStructures)
{
if (assessmentSection == null)
@@ -56,7 +58,7 @@
}
AssessmentSection = assessmentSection;
- ParentFailureMechanism = failureMechanism;
+ FailureMechanism = failureMechanism;
}
///
@@ -67,6 +69,6 @@
///
/// Gets the failure mechanism of this instance.
///
- public HeightStructuresFailureMechanism ParentFailureMechanism { get; private set; }
+ public HeightStructuresFailureMechanism FailureMechanism { get; private set; }
}
}
\ No newline at end of file