Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresCalculationGroupContext.cs =================================================================== diff -u -r8805f03189f521994b42a519bbca7561bf12eb68 -rb25389d952b8ac86e61c5e822124b2c250ae3e55 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresCalculationGroupContext.cs (.../HeightStructuresCalculationGroupContext.cs) (revision 8805f03189f521994b42a519bbca7561bf12eb68) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresCalculationGroupContext.cs (.../HeightStructuresCalculationGroupContext.cs) (revision b25389d952b8ac86e61c5e822124b2c250ae3e55) @@ -20,8 +20,11 @@ // All rights reserved. using System; +using System.Collections.Generic; +using System.Linq; using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.Calculation; +using Ringtoets.Common.Data.DikeProfiles; using Ringtoets.Common.Forms.PresentationObjects; using Ringtoets.HeightStructures.Data; @@ -45,5 +48,28 @@ HeightStructuresFailureMechanism failureMechanism, IAssessmentSection assessmentSection) : base(calculationsGroup, failureMechanism, assessmentSection) {} + + + /// + /// Gets the available foreshore profiles. + /// + public IEnumerable AvailableForeshoreProfiles + { + get + { + return FailureMechanism.ForeshoreProfiles; + } + } + + /// + /// Gets the available height structures. + /// + public IEnumerable AvailableStructures + { + get + { + return FailureMechanism.HeightStructures; + } + } } } \ No newline at end of file