Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresInputContext.cs
===================================================================
diff -u -r7823eab06c968c167d9d5b24a30acaa344478dc0 -rab20c4eb4ca81bd3845d50210d2bdb301177af6a
--- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresInputContext.cs (.../HeightStructuresInputContext.cs) (revision 7823eab06c968c167d9d5b24a30acaa344478dc0)
+++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresInputContext.cs (.../HeightStructuresInputContext.cs) (revision ab20c4eb4ca81bd3845d50210d2bdb301177af6a)
@@ -21,6 +21,7 @@
using System;
using Ringtoets.Common.Data.AssessmentSection;
+using Ringtoets.Common.Data.Structures;
using Ringtoets.Common.Forms.PresentationObjects;
using Ringtoets.HeightStructures.Data;
@@ -30,7 +31,7 @@
/// Presentation object for all data required to configure an instance of
/// in order to be able to configure height structures calculations.
///
- public class HeightStructuresInputContext : InputContextBase
+ public class HeightStructuresInputContext : InputContextBase, HeightStructuresFailureMechanism>
{
///
/// Creates a new instance of .
@@ -41,7 +42,7 @@
/// The assessment section which the context belongs to.
/// Thrown when any input argument is null.
public HeightStructuresInputContext(HeightStructuresInput wrappedData,
- HeightStructuresCalculation calculation,
+ StructuresCalculation calculation,
HeightStructuresFailureMechanism failureMechanism,
IAssessmentSection assessmentSection)
: base(wrappedData, calculation, failureMechanism, assessmentSection) {}