Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanism.cs =================================================================== diff -u -r56246f10e7876b30f36a5b9709ec2e3332b4010a -rc3641f1375abfabf1c8093037c0cccd3eb77d52a --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanism.cs (.../StabilityPointStructuresFailureMechanism.cs) (revision 56246f10e7876b30f36a5b9709ec2e3332b4010a) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanism.cs (.../StabilityPointStructuresFailureMechanism.cs) (revision c3641f1375abfabf1c8093037c0cccd3eb77d52a) @@ -21,6 +21,7 @@ using System.Collections.Generic; using System.Linq; +using Core.Common.Base; using Ringtoets.Common.Data; using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Data.DikeProfiles; @@ -37,7 +38,7 @@ /// public class StabilityPointStructuresFailureMechanism : FailureMechanismBase, ICalculatableFailureMechanism, IHasSectionResults> { - private readonly List> sectionResults; + private readonly ObservableList> sectionResults; /// /// Initializes a new instance of the class. @@ -51,7 +52,7 @@ }; GeneralInput = new GeneralStabilityPointStructuresInput(); StabilityPointStructures = new StructureCollection(); - sectionResults = new List>(); + sectionResults = new ObservableList>(); ForeshoreProfiles = new ForeshoreProfileCollection(); } @@ -80,7 +81,7 @@ public CalculationGroup CalculationsGroup { get; } - public IEnumerable> SectionResults + public ObservableList> SectionResults { get {