Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresScenarioRow.cs =================================================================== diff -u -ra23cff5445d53b381fd72f50a0d9b6c200cbcd69 -rda16c0ac134e9affa0893e190236f942b43bdaa2 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresScenarioRow.cs (.../HeightStructuresScenarioRow.cs) (revision a23cff5445d53b381fd72f50a0d9b6c200cbcd69) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresScenarioRow.cs (.../HeightStructuresScenarioRow.cs) (revision da16c0ac134e9affa0893e190236f942b43bdaa2) @@ -28,19 +28,19 @@ namespace Ringtoets.HeightStructures.Forms.Views { /// - /// Container of a , + /// Container of a , /// which takes care of the representation of properties in a grid. /// internal class HeightStructuresScenarioRow : IScenarioRow> { - private readonly StructuresFailureMechanismSectionResult sectionResult; + private readonly HeightStructuresFailureMechanismSectionResult sectionResult; /// /// Initializes a new instance of the class. /// /// The section result. /// Thrown when is null. - public HeightStructuresScenarioRow(StructuresFailureMechanismSectionResult sectionResult) + public HeightStructuresScenarioRow(HeightStructuresFailureMechanismSectionResult sectionResult) { if (sectionResult == null) { Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresScenariosView.cs =================================================================== diff -u -r16559315c0a64fffd05827d249200c62e353231f -rda16c0ac134e9affa0893e190236f942b43bdaa2 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresScenariosView.cs (.../HeightStructuresScenariosView.cs) (revision 16559315c0a64fffd05827d249200c62e353231f) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresScenariosView.cs (.../HeightStructuresScenariosView.cs) (revision da16c0ac134e9affa0893e190236f942b43bdaa2) @@ -132,7 +132,7 @@ StructuresHelper.CollectCalculationsPerSection(failureMechanism.Sections, calculations.Cast>()); List scenarioRows = - FailureMechanism.SectionResults.Select(sectionResult => new HeightStructuresScenarioRow(sectionResult)).ToList(); + FailureMechanism.SectionResults2.Select(sectionResult => new HeightStructuresScenarioRow(sectionResult)).ToList(); scenarioSelectionControl.UpdateDataGridViewDataSource(calculations, scenarioRows, calculationsPerSegment); } Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/Views/HeightStructuresScenarioRowTest.cs =================================================================== diff -u -ra23cff5445d53b381fd72f50a0d9b6c200cbcd69 -rda16c0ac134e9affa0893e190236f942b43bdaa2 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/Views/HeightStructuresScenarioRowTest.cs (.../HeightStructuresScenarioRowTest.cs) (revision a23cff5445d53b381fd72f50a0d9b6c200cbcd69) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/Views/HeightStructuresScenarioRowTest.cs (.../HeightStructuresScenarioRowTest.cs) (revision da16c0ac134e9affa0893e190236f942b43bdaa2) @@ -44,7 +44,7 @@ new Point2D(1.1, 2.2), new Point2D(3.3, 4.4) }); - var sectionResult = new StructuresFailureMechanismSectionResult(section); + var sectionResult = new HeightStructuresFailureMechanismSectionResult(section); // Call var row = new HeightStructuresScenarioRow(sectionResult); @@ -75,7 +75,7 @@ new Point2D(1.1, 2.2), new Point2D(3.3, 4.4) }); - var sectionResult = new StructuresFailureMechanismSectionResult(section); + var sectionResult = new HeightStructuresFailureMechanismSectionResult(section); var row = new HeightStructuresScenarioRow(sectionResult); @@ -103,7 +103,7 @@ new Point2D(1.1, 2.2), new Point2D(3.3, 4.4) }); - var sectionResult = new StructuresFailureMechanismSectionResult(section); + var sectionResult = new HeightStructuresFailureMechanismSectionResult(section); sectionResult.Attach(observer); var row = new HeightStructuresScenarioRow(sectionResult);