Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresFailureMechanismView.cs =================================================================== diff -u -re5472eab9999e26106c22311a822979f8dd1d6c9 -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresFailureMechanismView.cs (.../ClosingStructuresFailureMechanismView.cs) (revision e5472eab9999e26106c22311a822979f8dd1d6c9) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresFailureMechanismView.cs (.../ClosingStructuresFailureMechanismView.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -77,7 +77,7 @@ /// Creates a new instance of . /// /// The failure mechanism to show the data for. - /// The assessment section to show data for. + /// The assessment section to show the data for. /// Thrown when any parameter is null. public ClosingStructuresFailureMechanismView(ClosingStructuresFailureMechanism failureMechanism, IAssessmentSection assessmentSection) @@ -240,6 +240,7 @@ SetReferenceLineMapData(); SetSectionsMapData(); SetHydraulicBoundaryLocationsMapData(); + SetForeshoreProfilesMapData(); SetStructuresMapData(); SetCalculationsMapData(); Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/Views/ClosingStructuresFailureMechanismViewTest.cs =================================================================== diff -u -rf6e74516582b0e5c854526d50a90db1216417d9d -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/Views/ClosingStructuresFailureMechanismViewTest.cs (.../ClosingStructuresFailureMechanismViewTest.cs) (revision f6e74516582b0e5c854526d50a90db1216417d9d) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/Views/ClosingStructuresFailureMechanismViewTest.cs (.../ClosingStructuresFailureMechanismViewTest.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -126,7 +126,7 @@ [Test] public void Constructor_WithAllData_DataUpdatedToCollectionOfFilledMapData() { - // Setup + // Setup var calculationA = new StructuresCalculation { InputParameters = Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Plugin.Test/ViewInfos/ClosingStructuresFailureMechanismViewInfoTest.cs =================================================================== diff -u -r6f33b44599df032ecae3342b0aacd606a9e87c1f -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Plugin.Test/ViewInfos/ClosingStructuresFailureMechanismViewInfoTest.cs (.../ClosingStructuresFailureMechanismViewInfoTest.cs) (revision 6f33b44599df032ecae3342b0aacd606a9e87c1f) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Plugin.Test/ViewInfos/ClosingStructuresFailureMechanismViewInfoTest.cs (.../ClosingStructuresFailureMechanismViewInfoTest.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -204,6 +204,10 @@ // Assert Assert.IsInstanceOf(view); + + var failureMechanismView = (ClosingStructuresFailureMechanismView) view; + Assert.AreSame(failureMechanism, failureMechanismView.FailureMechanism); + Assert.AreSame(assessmentSection, failureMechanismView.AssessmentSection); } } } \ No newline at end of file Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Views/FailureMechanismView.cs =================================================================== diff -u -re3525b83462e23f26b9220c00667bd3eb11d33ed -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/Common/src/Ringtoets.Common.Forms/Views/FailureMechanismView.cs (.../FailureMechanismView.cs) (revision e3525b83462e23f26b9220c00667bd3eb11d33ed) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/Views/FailureMechanismView.cs (.../FailureMechanismView.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -210,7 +210,7 @@ private void SetSectionsMapData() { - IEnumerable failureMechanismSections = FailureMechanism.Sections.ToArray(); + IEnumerable failureMechanismSections = FailureMechanism.Sections; sectionsMapData.Features = RingtoetsMapDataFeaturesFactory.CreateFailureMechanismSectionFeatures(failureMechanismSections); sectionsStartPointMapData.Features = RingtoetsMapDataFeaturesFactory.CreateFailureMechanismSectionStartPointFeatures(failureMechanismSections); Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsFailureMechanismView.cs =================================================================== diff -u -r92f7b5611e72a2450bda4766beeefcbfd9abd136 -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsFailureMechanismView.cs (.../GrassCoverErosionInwardsFailureMechanismView.cs) (revision 92f7b5611e72a2450bda4766beeefcbfd9abd136) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsFailureMechanismView.cs (.../GrassCoverErosionInwardsFailureMechanismView.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -74,7 +74,7 @@ /// Creates a new instance of . /// /// The failure mechanism to show the data for. - /// The assessment section to show data for. + /// The assessment section to show the data for. /// Thrown when any parameter is null. public GrassCoverErosionInwardsFailureMechanismView(GrassCoverErosionInwardsFailureMechanism failureMechanism, IAssessmentSection assessmentSection) Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Plugin.Test/ViewInfos/GrassCoverErosionInwardsFailureMechanismViewInfoTest.cs =================================================================== diff -u -r6f33b44599df032ecae3342b0aacd606a9e87c1f -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Plugin.Test/ViewInfos/GrassCoverErosionInwardsFailureMechanismViewInfoTest.cs (.../GrassCoverErosionInwardsFailureMechanismViewInfoTest.cs) (revision 6f33b44599df032ecae3342b0aacd606a9e87c1f) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Plugin.Test/ViewInfos/GrassCoverErosionInwardsFailureMechanismViewInfoTest.cs (.../GrassCoverErosionInwardsFailureMechanismViewInfoTest.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -205,6 +205,10 @@ // Assert Assert.IsInstanceOf(view); + + var failureMechanismView = (GrassCoverErosionInwardsFailureMechanismView) view; + Assert.AreSame(failureMechanism, failureMechanismView.FailureMechanism); + Assert.AreSame(assessmentSection, failureMechanismView.AssessmentSection); } } } \ No newline at end of file Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresFailureMechanismView.cs =================================================================== diff -u -ra748f8c69f8137567dac44b334e091b906812712 -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresFailureMechanismView.cs (.../HeightStructuresFailureMechanismView.cs) (revision a748f8c69f8137567dac44b334e091b906812712) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresFailureMechanismView.cs (.../HeightStructuresFailureMechanismView.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -77,7 +77,7 @@ /// Creates a new instance of . /// /// The failure mechanism to show the data for. - /// The assessment section to show data for. + /// The assessment section to show the data for. /// Thrown when any parameter is null. public HeightStructuresFailureMechanismView(HeightStructuresFailureMechanism failureMechanism, IAssessmentSection assessmentSection) Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsFailureMechanismView.cs =================================================================== diff -u -r68e4230c835bb4767ded598ce6fb80411e84cde8 -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsFailureMechanismView.cs (.../MacroStabilityInwardsFailureMechanismView.cs) (revision 68e4230c835bb4767ded598ce6fb80411e84cde8) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsFailureMechanismView.cs (.../MacroStabilityInwardsFailureMechanismView.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -76,7 +76,7 @@ /// Creates a new instance of . /// /// The failure mechanism to show the data for. - /// The assessment section to show data for. + /// The assessment section to show the data for. /// Thrown when any parameter is null. public MacroStabilityInwardsFailureMechanismView(MacroStabilityInwardsFailureMechanism failureMechanism, IAssessmentSection assessmentSection) @@ -176,7 +176,6 @@ { Observable = FailureMechanism }; - assessmentSectionObserver = new Observer(UpdateReferenceLineMapData) { Observable = AssessmentSection Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsFailureMechanismViewTest.cs =================================================================== diff -u -rf6e74516582b0e5c854526d50a90db1216417d9d -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsFailureMechanismViewTest.cs (.../MacroStabilityInwardsFailureMechanismViewTest.cs) (revision f6e74516582b0e5c854526d50a90db1216417d9d) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsFailureMechanismViewTest.cs (.../MacroStabilityInwardsFailureMechanismViewTest.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -352,7 +352,7 @@ } [Test] - public void GivenViewWithSurfaceLinesData_WhenSurfaceLinesUpdatedAndNotified_ThenMapDataUpdatedAndObserverNotified() + public void GivenViewWithSurfaceLinesData_WhenSurfaceLinesUpdatedAndNotified_ThenMapDataUpdated() { // Given var failureMechanism = new MacroStabilityInwardsFailureMechanism(); @@ -388,7 +388,7 @@ } [Test] - public void GivenViewWithSurfaceLineData_WhenSurfaceLineUpdatedAndNotified_ThenMapDataUpdatedAndObserverNotified() + public void GivenViewWithSurfaceLineData_WhenSurfaceLineUpdatedAndNotified_ThenMapDataUpdated() { // Given var surfaceLine = new MacroStabilityInwardsSurfaceLine(string.Empty); @@ -460,7 +460,7 @@ } [Test] - public void GivenViewWithStochasticSoilModels_WhenStochasticSoilModelsUpdatedAndNotified_ThenMapDataUpdatedAndObserverNotified() + public void GivenViewWithStochasticSoilModels_WhenStochasticSoilModelsUpdatedAndNotified_ThenMapDataUpdated() { // Given var failureMechanism = new MacroStabilityInwardsFailureMechanism(); @@ -831,11 +831,11 @@ var referenceLineMapDataObserver = mocks.StrictMock(); mapDataArray[referenceLineIndex].Attach(referenceLineMapDataObserver); - var stochasticSoilModelMapDataObserver = mocks.StrictMock(); - mapDataArray[stochasticSoilModelsIndex].Attach(stochasticSoilModelMapDataObserver); + var stochasticSoilModelsMapDataObserver = mocks.StrictMock(); + mapDataArray[stochasticSoilModelsIndex].Attach(stochasticSoilModelsMapDataObserver); - var surfaceLineMapDataObserver = mocks.StrictMock(); - mapDataArray[surfaceLinesIndex].Attach(surfaceLineMapDataObserver); + var surfaceLinesMapDataObserver = mocks.StrictMock(); + mapDataArray[surfaceLinesIndex].Attach(surfaceLinesMapDataObserver); var sectionsMapDataObserver = mocks.StrictMock(); mapDataArray[sectionsIndex].Attach(sectionsMapDataObserver); @@ -855,8 +855,8 @@ return new[] { referenceLineMapDataObserver, - stochasticSoilModelMapDataObserver, - surfaceLineMapDataObserver, + stochasticSoilModelsMapDataObserver, + surfaceLinesMapDataObserver, sectionsMapDataObserver, sectionsStartPointMapDataObserver, sectionsEndPointMapDataObserver, Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/ViewInfos/MacroStabilityInwardsFailureMechanismViewInfoTest.cs =================================================================== diff -u -r6f33b44599df032ecae3342b0aacd606a9e87c1f -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/ViewInfos/MacroStabilityInwardsFailureMechanismViewInfoTest.cs (.../MacroStabilityInwardsFailureMechanismViewInfoTest.cs) (revision 6f33b44599df032ecae3342b0aacd606a9e87c1f) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/ViewInfos/MacroStabilityInwardsFailureMechanismViewInfoTest.cs (.../MacroStabilityInwardsFailureMechanismViewInfoTest.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -203,6 +203,10 @@ // Assert Assert.IsInstanceOf(view); + + var failureMechanismView = (MacroStabilityInwardsFailureMechanismView) view; + Assert.AreSame(failureMechanism, failureMechanismView.FailureMechanism); + Assert.AreSame(assessmentSection, failureMechanismView.AssessmentSection); } } } \ No newline at end of file Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingFailureMechanismView.cs =================================================================== diff -u -r03ba8b84d3af68eeab4daf90648fba8505c52e6f -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingFailureMechanismView.cs (.../PipingFailureMechanismView.cs) (revision 03ba8b84d3af68eeab4daf90648fba8505c52e6f) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingFailureMechanismView.cs (.../PipingFailureMechanismView.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -76,7 +76,7 @@ /// Creates a new instance of . /// /// The failure mechanism to show the data for. - /// The assessment section to show data for. + /// The assessment section to show the data for. /// Thrown when any parameter is null. public PipingFailureMechanismView(PipingFailureMechanism failureMechanism, IAssessmentSection assessmentSection) { Index: Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingFailureMechanismViewTest.cs =================================================================== diff -u -rf6e74516582b0e5c854526d50a90db1216417d9d -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingFailureMechanismViewTest.cs (.../PipingFailureMechanismViewTest.cs) (revision f6e74516582b0e5c854526d50a90db1216417d9d) +++ Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingFailureMechanismViewTest.cs (.../PipingFailureMechanismViewTest.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -351,7 +351,7 @@ } [Test] - public void GivenViewWithSurfaceLinesData_WhenSurfaceLinesUpdatedAndNotified_ThenMapDataUpdatedAndObserverNotified() + public void GivenViewWithSurfaceLinesData_WhenSurfaceLinesUpdatedAndNotified_ThenMapDataUpdated() { // Given var failureMechanism = new PipingFailureMechanism(); @@ -388,7 +388,7 @@ } [Test] - public void GivenViewWithSurfaceLineData_WhenSurfaceLineUpdatedAndNotified_ThenMapDataUpdatedAndObserverNotified() + public void GivenViewWithSurfaceLineData_WhenSurfaceLineUpdatedAndNotified_ThenMapDataUpdated() { // Given var surfaceLine = new PipingSurfaceLine(string.Empty); @@ -460,7 +460,7 @@ } [Test] - public void GivenViewWithStochasticSoilModels_WhenStochasticSoilModelsUpdatedAndNotified_ThenMapDataUpdatedAndObserverNotified() + public void GivenViewWithStochasticSoilModels_WhenStochasticSoilModelsUpdatedAndNotified_ThenMapDataUpdated() { // Given var failureMechanism = new PipingFailureMechanism(); @@ -840,11 +840,11 @@ var referenceLineMapDataObserver = mocks.StrictMock(); mapDataArray[referenceLineIndex].Attach(referenceLineMapDataObserver); - var stochasticSoilModelMapDataObserver = mocks.StrictMock(); - mapDataArray[stochasticSoilModelsIndex].Attach(stochasticSoilModelMapDataObserver); + var stochasticSoilModelsMapDataObserver = mocks.StrictMock(); + mapDataArray[stochasticSoilModelsIndex].Attach(stochasticSoilModelsMapDataObserver); - var surfaceLineMapDataObserver = mocks.StrictMock(); - mapDataArray[surfaceLinesIndex].Attach(surfaceLineMapDataObserver); + var surfaceLinesMapDataObserver = mocks.StrictMock(); + mapDataArray[surfaceLinesIndex].Attach(surfaceLinesMapDataObserver); var sectionsMapDataObserver = mocks.StrictMock(); mapDataArray[sectionsIndex].Attach(sectionsMapDataObserver); @@ -864,8 +864,8 @@ return new[] { referenceLineMapDataObserver, - stochasticSoilModelMapDataObserver, - surfaceLineMapDataObserver, + stochasticSoilModelsMapDataObserver, + surfaceLinesMapDataObserver, sectionsMapDataObserver, sectionsStartPointMapDataObserver, sectionsEndPointMapDataObserver, Index: Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/ViewInfos/PipingFailureMechanismViewInfoTest.cs =================================================================== diff -u -r6f33b44599df032ecae3342b0aacd606a9e87c1f -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/ViewInfos/PipingFailureMechanismViewInfoTest.cs (.../PipingFailureMechanismViewInfoTest.cs) (revision 6f33b44599df032ecae3342b0aacd606a9e87c1f) +++ Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/ViewInfos/PipingFailureMechanismViewInfoTest.cs (.../PipingFailureMechanismViewInfoTest.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -204,6 +204,10 @@ // Assert Assert.IsInstanceOf(view); + + var failureMechanismView = (PipingFailureMechanismView) view; + Assert.AreSame(failureMechanism, failureMechanismView.FailureMechanism); + Assert.AreSame(assessmentSection, failureMechanismView.AssessmentSection); } } } \ No newline at end of file Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/Views/StabilityPointStructuresFailureMechanismView.cs =================================================================== diff -u -r7a08ac93e04efa631f4b5242bca771c0d4b3078a -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/Views/StabilityPointStructuresFailureMechanismView.cs (.../StabilityPointStructuresFailureMechanismView.cs) (revision 7a08ac93e04efa631f4b5242bca771c0d4b3078a) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/Views/StabilityPointStructuresFailureMechanismView.cs (.../StabilityPointStructuresFailureMechanismView.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -77,7 +77,7 @@ /// Creates a new instance of . /// /// The failure mechanism to show the data for. - /// The assessment section to show data for. + /// The assessment section to show the data for. /// Thrown when any parameter is null. public StabilityPointStructuresFailureMechanismView(StabilityPointStructuresFailureMechanism failureMechanism, IAssessmentSection assessmentSection) Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/Views/StabilityStoneCoverFailureMechanismView.cs =================================================================== diff -u -r2fa7c1c5816c0c8dac48a00bc159ff9a32f7a3bd -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/Views/StabilityStoneCoverFailureMechanismView.cs (.../StabilityStoneCoverFailureMechanismView.cs) (revision 2fa7c1c5816c0c8dac48a00bc159ff9a32f7a3bd) +++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/Views/StabilityStoneCoverFailureMechanismView.cs (.../StabilityStoneCoverFailureMechanismView.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -74,7 +74,7 @@ /// Creates a new instance of . /// /// The failure mechanism to show the data for. - /// The assessment section to show data for. + /// The assessment section to show the data for. /// Thrown when any parameter is null. public StabilityStoneCoverFailureMechanismView(StabilityStoneCoverFailureMechanism failureMechanism, IAssessmentSection assessmentSection) Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/Views/WaveImpactAsphaltCoverFailureMechanismView.cs =================================================================== diff -u -r67f4bb78ffbff5cbd68cba1fa07a27062aa351e4 -r24e90a2fa98b517b420bcd60e16ada43fb3fd6be --- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/Views/WaveImpactAsphaltCoverFailureMechanismView.cs (.../WaveImpactAsphaltCoverFailureMechanismView.cs) (revision 67f4bb78ffbff5cbd68cba1fa07a27062aa351e4) +++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/Views/WaveImpactAsphaltCoverFailureMechanismView.cs (.../WaveImpactAsphaltCoverFailureMechanismView.cs) (revision 24e90a2fa98b517b420bcd60e16ada43fb3fd6be) @@ -74,7 +74,7 @@ /// Creates a new instance of . /// /// The failure mechanism to show the data for. - /// The assessment section to show data for. + /// The assessment section to show the data for. /// Thrown when any parameter is null. public WaveImpactAsphaltCoverFailureMechanismView(WaveImpactAsphaltCoverFailureMechanism failureMechanism, IAssessmentSection assessmentSection)