Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresCalculationContext.cs
===================================================================
diff -u -rca23b1b155ca87c0aa4665fd919727570f31c781 -rab20c4eb4ca81bd3845d50210d2bdb301177af6a
--- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresCalculationContext.cs (.../HeightStructuresCalculationContext.cs) (revision ca23b1b155ca87c0aa4665fd919727570f31c781)
+++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresCalculationContext.cs (.../HeightStructuresCalculationContext.cs) (revision ab20c4eb4ca81bd3845d50210d2bdb301177af6a)
@@ -21,26 +21,27 @@
using System;
using Ringtoets.Common.Data.AssessmentSection;
+using Ringtoets.Common.Data.Structures;
using Ringtoets.Common.Forms.PresentationObjects;
using Ringtoets.HeightStructures.Data;
namespace Ringtoets.HeightStructures.Forms.PresentationObjects
{
///
- /// Presentation object for all data required to configure an instance of
+ /// Presentation object for all data required to configure an instance of
/// in order to prepare it for performing a calculation.
///
- public class HeightStructuresCalculationContext : FailureMechanismItemContextBase,
- ICalculationContext
+ public class HeightStructuresCalculationContext : FailureMechanismItemContextBase, HeightStructuresFailureMechanism>,
+ ICalculationContext, HeightStructuresFailureMechanism>
{
///
/// Creates a new instance of .
///
- /// The instance wrapped by this context object.
+ /// The instance wrapped by this context object.
/// The failure mechanism which the context belongs to.
/// The assessment section which the calculation belongs to.
/// When any input argument is null.
- public HeightStructuresCalculationContext(HeightStructuresCalculation calculation,
+ public HeightStructuresCalculationContext(StructuresCalculation calculation,
HeightStructuresFailureMechanism failureMechanism,
IAssessmentSection assessmentSection)
: base(calculation, failureMechanism, assessmentSection) {}