Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresScenariosView.cs =================================================================== diff -u -r2ec06c41e23172aee5fba6f3b6588486c922514b -r2190156241cd307f0d9d784f2ff50ed339c3beac --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresScenariosView.cs (.../ClosingStructuresScenariosView.cs) (revision 2ec06c41e23172aee5fba6f3b6588486c922514b) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresScenariosView.cs (.../ClosingStructuresScenariosView.cs) (revision 2190156241cd307f0d9d784f2ff50ed339c3beac) @@ -20,6 +20,8 @@ // All rights reserved. using System.Windows.Forms; +using Core.Common.Controls.Views; +using Ringtoets.ClosingStructures.Data; namespace Ringtoets.ClosingStructures.Forms.Views { @@ -28,7 +30,7 @@ /// Shows a grid view where for each failure mechanism section, a calculation within the section /// can be selected. /// - public partial class ClosingStructuresScenariosView : UserControl + public partial class ClosingStructuresScenariosView : UserControl, IView { /// /// Creates a new instance of . @@ -37,5 +39,12 @@ { InitializeComponent(); } + + public object Data { get; set; } + + /// + /// Gets or sets the failure mechanism. + /// + public ClosingStructuresFailureMechanism FailureMechanism { get; set; } } }