Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PresentationObjects/ClosingStructuresInputContext.cs =================================================================== diff -u -rca23b1b155ca87c0aa4665fd919727570f31c781 -ra9591008569d7b58499fa258b0530ba273850d21 --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PresentationObjects/ClosingStructuresInputContext.cs (.../ClosingStructuresInputContext.cs) (revision ca23b1b155ca87c0aa4665fd919727570f31c781) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PresentationObjects/ClosingStructuresInputContext.cs (.../ClosingStructuresInputContext.cs) (revision a9591008569d7b58499fa258b0530ba273850d21) @@ -30,18 +30,20 @@ /// Presentation object for all data required to configure an instance of /// in order to be able to configure closing structures calculations. /// - public class ClosingStructuresInputContext : FailureMechanismItemContextBase + public class ClosingStructuresInputContext : InputContextBase { /// /// Creates a new instance of . /// - /// The closing structures input instance wrapped by this context object. - /// The failure mechanism which the calculation belongs to. - /// The assessment section which the calculation belongs to. - /// When any input argument is null. - public ClosingStructuresInputContext(ClosingStructuresInput input, + /// The calculation input wrapped by the context object. + /// The closing structures calculation containing the . + /// The failure mechanism which the context belongs to. + /// The assessment section which the context belongs to. + /// Thrown when any input argument is null. + public ClosingStructuresInputContext(ClosingStructuresInput wrappedData, + ClosingStructuresCalculation calculation, ClosingStructuresFailureMechanism failureMechanism, IAssessmentSection assessmentSection) - : base(input, failureMechanism, assessmentSection) {} + : base(wrappedData, calculation, failureMechanism, assessmentSection) { } } } \ No newline at end of file