Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresFailureMechanism.cs =================================================================== diff -u -r49621ecdce5a2a8f7c8bb689e8cfd6759dfb8fc6 -r52bce8b206b1c171b7590763a725271e9bd974a7 --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresFailureMechanism.cs (.../ClosingStructuresFailureMechanism.cs) (revision 49621ecdce5a2a8f7c8bb689e8cfd6759dfb8fc6) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresFailureMechanism.cs (.../ClosingStructuresFailureMechanism.cs) (revision 52bce8b206b1c171b7590763a725271e9bd974a7) @@ -35,9 +35,9 @@ /// Model containing input and output needed to perform different levels of the /// Closing Structures failure mechanism. /// - public class ClosingStructuresFailureMechanism : FailureMechanismBase, ICalculatableFailureMechanism, IHasSectionResults + public class ClosingStructuresFailureMechanism : FailureMechanismBase, ICalculatableFailureMechanism, IHasSectionResults> { - private readonly List sectionResults; + private readonly List> sectionResults; /// /// Initializes a new instance of the class. @@ -51,7 +51,7 @@ }; GeneralInput = new GeneralClosingStructuresInput(); ClosingStructures = new StructureCollection(); - sectionResults = new List(); + sectionResults = new List>(); ForeshoreProfiles = new ForeshoreProfileCollection(); } @@ -80,7 +80,7 @@ public CalculationGroup CalculationsGroup { get; } - public IEnumerable SectionResults + public IEnumerable> SectionResults { get { @@ -92,7 +92,7 @@ { base.AddSection(section); - sectionResults.Add(new ClosingStructuresFailureMechanismSectionResult(section)); + sectionResults.Add(new StructuresFailureMechanismSectionResult(section)); } public override void ClearAllSections()