Index: Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/PresentationObjects/GrassCoverErosionOutwardsDesignWaterLevelLocationsContext.cs
===================================================================
diff -u -rd6acb89a52643cf1790f58249b1202b5cb9263cf -rf5a847fc18c464d482bf9b3211525fca5e02addc
--- Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/PresentationObjects/GrassCoverErosionOutwardsDesignWaterLevelLocationsContext.cs (.../GrassCoverErosionOutwardsDesignWaterLevelLocationsContext.cs) (revision d6acb89a52643cf1790f58249b1202b5cb9263cf)
+++ Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/PresentationObjects/GrassCoverErosionOutwardsDesignWaterLevelLocationsContext.cs (.../GrassCoverErosionOutwardsDesignWaterLevelLocationsContext.cs) (revision f5a847fc18c464d482bf9b3211525fca5e02addc)
@@ -29,34 +29,35 @@
namespace Ringtoets.GrassCoverErosionOutwards.Forms.PresentationObjects
{
///
- /// Presentation object for all data required to configure an enumeration of
+ /// Presentation object for all data required to configure an enumeration of
/// with a design water level calculation result for a given norm.
///
public class GrassCoverErosionOutwardsDesignWaterLevelLocationsContext : ObservableWrappedObjectContextBase>
{
///
/// Creates a new instance of .
///
- /// The hydraulic boundary locations for this context.
- /// The which the
+ /// The hydraulic boundary location calculations for this context.
+ /// The which the
/// belongs to.
/// The grass cover erosion outwards failure mechanism within
/// the .
/// Thrown when any input parameter is null.
- public GrassCoverErosionOutwardsDesignWaterLevelLocationsContext(
- ObservableList hydraulicBoundaryLocations,
- IAssessmentSection assessmentSection,
- GrassCoverErosionOutwardsFailureMechanism failureMechanism)
- : base(hydraulicBoundaryLocations)
+ public GrassCoverErosionOutwardsDesignWaterLevelLocationsContext(ObservableList calculations,
+ IAssessmentSection assessmentSection,
+ GrassCoverErosionOutwardsFailureMechanism failureMechanism)
+ : base(calculations)
{
if (assessmentSection == null)
{
throw new ArgumentNullException(nameof(assessmentSection));
}
+
if (failureMechanism == null)
{
throw new ArgumentNullException(nameof(failureMechanism));
}
+
AssessmentSection = assessmentSection;
FailureMechanism = failureMechanism;
}