Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanism.cs =================================================================== diff -u -r49621ecdce5a2a8f7c8bb689e8cfd6759dfb8fc6 -r56246f10e7876b30f36a5b9709ec2e3332b4010a --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanism.cs (.../StabilityPointStructuresFailureMechanism.cs) (revision 49621ecdce5a2a8f7c8bb689e8cfd6759dfb8fc6) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanism.cs (.../StabilityPointStructuresFailureMechanism.cs) (revision 56246f10e7876b30f36a5b9709ec2e3332b4010a) @@ -35,9 +35,9 @@ /// Model containing input and output needed to perform different levels of the /// Strength and Stability of Point Constructions failure mechanism. /// - public class StabilityPointStructuresFailureMechanism : FailureMechanismBase, ICalculatableFailureMechanism, IHasSectionResults + public class StabilityPointStructuresFailureMechanism : FailureMechanismBase, ICalculatableFailureMechanism, IHasSectionResults> { - private readonly List sectionResults; + private readonly List> sectionResults; /// /// Initializes a new instance of the class. @@ -51,7 +51,7 @@ }; GeneralInput = new GeneralStabilityPointStructuresInput(); StabilityPointStructures = 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 StabilityPointStructuresFailureMechanismSectionResult(section)); + sectionResults.Add(new StructuresFailureMechanismSectionResult(section)); } public override void ClearAllSections()