Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/IFailureMechanismContext.cs
===================================================================
diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -rc34960143da27c9bfe3f0ce343d8e5d3217ab0e0
--- Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/IFailureMechanismContext.cs (.../IFailureMechanismContext.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/IFailureMechanismContext.cs (.../IFailureMechanismContext.cs) (revision c34960143da27c9bfe3f0ce343d8e5d3217ab0e0)
@@ -19,6 +19,7 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using Ringtoets.Common.Data.AssessmentSection;
using Ringtoets.Common.Data.FailureMechanism;
namespace Ringtoets.Common.Forms.PresentationObjects
@@ -27,12 +28,17 @@
/// Interface for a failure mechanism context which wraps an implementation of the
/// interface.
///
- ///
+ /// The type of the wrapped failure mechanism.
public interface IFailureMechanismContext where T : IFailureMechanism
{
///
/// Gets the wrapped in this presentation object.
///
T WrappedData { get; }
+
+ ///
+ /// Gets the parent of .
+ ///
+ IAssessmentSection Parent { get; }
}
}
\ No newline at end of file