Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsFailureMechanismResultView.cs
===================================================================
diff -u -r7f80815f667036fe5000fb938d61aee1edd157e0 -ra116692d59b7634613a5a9e1ac9aeb80e0e126c5
--- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsFailureMechanismResultView.cs (.../GrassCoverErosionInwardsFailureMechanismResultView.cs) (revision 7f80815f667036fe5000fb938d61aee1edd157e0)
+++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsFailureMechanismResultView.cs (.../GrassCoverErosionInwardsFailureMechanismResultView.cs) (revision a116692d59b7634613a5a9e1ac9aeb80e0e126c5)
@@ -49,12 +49,14 @@
///
/// Creates a new instance of .
///
+ ///
+ ///
/// The assessment section the failure mechanism section results belongs to.
///
public GrassCoverErosionInwardsFailureMechanismResultView(
- IAssessmentSection assessmentSection,
+ IObservableEnumerable failureMechanismSectionResults,
GrassCoverErosionInwardsFailureMechanism failureMechanism,
- IObservableEnumerable failureMechanismSectionResults)
+ IAssessmentSection assessmentSection)
: base(failureMechanismSectionResults, failureMechanism)
{
if (assessmentSection == null)
@@ -104,7 +106,7 @@
protected override object CreateFailureMechanismSectionResultRow(GrassCoverErosionInwardsFailureMechanismSectionResult sectionResult)
{
- return new GrassCoverErosionInwardsFailureMechanismSectionResultRow(sectionResult,
+ return new GrassCoverErosionInwardsFailureMechanismSectionResultRow(sectionResult,
FailureMechanism,
assessmentSection);
}