Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PresentationObjects/ClosingStructuresContext.cs
===================================================================
diff -u -rd705284acf98d459d09b5b2afd48ec3a629c9a3f -rbc9af05d3eb0d40e5620b96f537ed92f3ae52e94
--- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PresentationObjects/ClosingStructuresContext.cs (.../ClosingStructuresContext.cs) (revision d705284acf98d459d09b5b2afd48ec3a629c9a3f)
+++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PresentationObjects/ClosingStructuresContext.cs (.../ClosingStructuresContext.cs) (revision bc9af05d3eb0d40e5620b96f537ed92f3ae52e94)
@@ -39,7 +39,9 @@
/// The failure mechanism which the closing structures belong to.
/// The assessment section which the closing structures belong to.
/// Thrown when any of the input arguments are null.
- public ClosingStructuresContext(ObservableList closingStructures, ClosingStructuresFailureMechanism failureMechanism, IAssessmentSection assessmentSection)
+ public ClosingStructuresContext(ObservableList closingStructures,
+ ClosingStructuresFailureMechanism failureMechanism,
+ IAssessmentSection assessmentSection)
: base(closingStructures)
{
if (assessmentSection == null)
@@ -51,7 +53,7 @@
throw new ArgumentNullException("failureMechanism");
}
- ParentFailureMechanism = failureMechanism;
+ FailureMechanism = failureMechanism;
AssessmentSection = assessmentSection;
}
@@ -63,6 +65,6 @@
///
/// Gets the failure mechanism of this instance.
///
- public ClosingStructuresFailureMechanism ParentFailureMechanism { get; private set; }
+ public ClosingStructuresFailureMechanism FailureMechanism { get; private set; }
}
}
\ No newline at end of file