Index: Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/PresentationObjects/GrassCoverErosionOutwardsWaveConditionsInputContext.cs =================================================================== diff -u -r9fe261b66402088be0b3929bc93fc54ce9768bff -r8bab6342a9c701a3492b3f859d7ae4019aefab45 --- Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/PresentationObjects/GrassCoverErosionOutwardsWaveConditionsInputContext.cs (.../GrassCoverErosionOutwardsWaveConditionsInputContext.cs) (revision 9fe261b66402088be0b3929bc93fc54ce9768bff) +++ Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/PresentationObjects/GrassCoverErosionOutwardsWaveConditionsInputContext.cs (.../GrassCoverErosionOutwardsWaveConditionsInputContext.cs) (revision 8bab6342a9c701a3492b3f859d7ae4019aefab45) @@ -43,14 +43,14 @@ /// /// The wrapped . /// The calculation having as input. + /// The the context belongs to. /// The /// the context belongs to. - /// The the context belongs to. /// Thrown when any parameter is null. public GrassCoverErosionOutwardsWaveConditionsInputContext(WaveConditionsInput wrappedData, ICalculation calculation, - GrassCoverErosionOutwardsFailureMechanism failureMechanism, - IAssessmentSection assessmentSection) + IAssessmentSection assessmentSection, + GrassCoverErosionOutwardsFailureMechanism failureMechanism) : base(wrappedData, calculation, assessmentSection) { if (failureMechanism == null) Index: Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/PresentationObjects/GrassCoverErosionOutwardsWaveConditionsInputContextTest.cs =================================================================== diff -u -r0df9dceeda4ff12e4b57d43b6c7bfd3e4739abf2 -r8bab6342a9c701a3492b3f859d7ae4019aefab45 --- Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/PresentationObjects/GrassCoverErosionOutwardsWaveConditionsInputContextTest.cs (.../GrassCoverErosionOutwardsWaveConditionsInputContextTest.cs) (revision 0df9dceeda4ff12e4b57d43b6c7bfd3e4739abf2) +++ Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/PresentationObjects/GrassCoverErosionOutwardsWaveConditionsInputContextTest.cs (.../GrassCoverErosionOutwardsWaveConditionsInputContextTest.cs) (revision 8bab6342a9c701a3492b3f859d7ae4019aefab45) @@ -50,8 +50,8 @@ // Call var context = new GrassCoverErosionOutwardsWaveConditionsInputContext(input, calculation, - failureMechanism, - assessmentSection); + assessmentSection, + failureMechanism); // Assert Assert.IsInstanceOf(context); @@ -77,8 +77,8 @@ // Call TestDelegate test = () => new GrassCoverErosionOutwardsWaveConditionsInputContext(input, calculation, - null, - assessmentSection); + assessmentSection, + null); // Assert var exception = Assert.Throws(test); Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/PresentationObjects/StabilityStoneCoverWaveConditionsInputContext.cs =================================================================== diff -u -r0df9dceeda4ff12e4b57d43b6c7bfd3e4739abf2 -r8bab6342a9c701a3492b3f859d7ae4019aefab45 --- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/PresentationObjects/StabilityStoneCoverWaveConditionsInputContext.cs (.../StabilityStoneCoverWaveConditionsInputContext.cs) (revision 0df9dceeda4ff12e4b57d43b6c7bfd3e4739abf2) +++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/PresentationObjects/StabilityStoneCoverWaveConditionsInputContext.cs (.../StabilityStoneCoverWaveConditionsInputContext.cs) (revision 8bab6342a9c701a3492b3f859d7ae4019aefab45) @@ -41,13 +41,13 @@ /// /// The wrapped .> /// The calculation having as input. - /// The foreshore profiles of the . /// The assessment section which the context belongs to. + /// The foreshore profiles of the . /// Thrown when any parameter is null. public StabilityStoneCoverWaveConditionsInputContext(WaveConditionsInput wrappedData, ICalculation calculation, - IEnumerable foreshoreProfiles, - IAssessmentSection assessmentSection) + IAssessmentSection assessmentSection, + IEnumerable foreshoreProfiles) : base(wrappedData, calculation, assessmentSection) { if (foreshoreProfiles == null) Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PresentationObjects/StabilityStoneCoverWaveConditionsInputContextTest.cs =================================================================== diff -u -r0df9dceeda4ff12e4b57d43b6c7bfd3e4739abf2 -r8bab6342a9c701a3492b3f859d7ae4019aefab45 --- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PresentationObjects/StabilityStoneCoverWaveConditionsInputContextTest.cs (.../StabilityStoneCoverWaveConditionsInputContextTest.cs) (revision 0df9dceeda4ff12e4b57d43b6c7bfd3e4739abf2) +++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PresentationObjects/StabilityStoneCoverWaveConditionsInputContextTest.cs (.../StabilityStoneCoverWaveConditionsInputContextTest.cs) (revision 8bab6342a9c701a3492b3f859d7ae4019aefab45) @@ -50,8 +50,8 @@ // Call var context = new StabilityStoneCoverWaveConditionsInputContext(calculation.InputParameters, calculation, - foreshoreProfiles, - assessmentSection); + assessmentSection, + foreshoreProfiles); // Assert Assert.IsInstanceOf(context); @@ -76,8 +76,8 @@ // Call TestDelegate test = () => new StabilityStoneCoverWaveConditionsInputContext(calculation.InputParameters, calculation, - null, - assessmentSection); + assessmentSection, + null); // Assert var exception = Assert.Throws(test); Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/PresentationObjects/WaveImpactAsphaltCoverWaveConditionsInputContext.cs =================================================================== diff -u -r0df9dceeda4ff12e4b57d43b6c7bfd3e4739abf2 -r8bab6342a9c701a3492b3f859d7ae4019aefab45 --- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/PresentationObjects/WaveImpactAsphaltCoverWaveConditionsInputContext.cs (.../WaveImpactAsphaltCoverWaveConditionsInputContext.cs) (revision 0df9dceeda4ff12e4b57d43b6c7bfd3e4739abf2) +++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/PresentationObjects/WaveImpactAsphaltCoverWaveConditionsInputContext.cs (.../WaveImpactAsphaltCoverWaveConditionsInputContext.cs) (revision 8bab6342a9c701a3492b3f859d7ae4019aefab45) @@ -40,13 +40,13 @@ /// /// The wrapped . /// The calculation having as input. - /// The foreshore profiles of the . /// The assessment section which the context belongs to. + /// The foreshore profiles of the . /// Thrown when any parameter is null. public WaveImpactAsphaltCoverWaveConditionsInputContext(WaveConditionsInput wrappedData, ICalculation calculation, - IEnumerable foreshoreProfiles, - IAssessmentSection assessmentSection) + IAssessmentSection assessmentSection, + IEnumerable foreshoreProfiles) : base(wrappedData, calculation, assessmentSection) { if (foreshoreProfiles == null) Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PresentationObjects/WaveImpactAsphaltCoverWaveConditionsInputContextTest.cs =================================================================== diff -u -r0df9dceeda4ff12e4b57d43b6c7bfd3e4739abf2 -r8bab6342a9c701a3492b3f859d7ae4019aefab45 --- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PresentationObjects/WaveImpactAsphaltCoverWaveConditionsInputContextTest.cs (.../WaveImpactAsphaltCoverWaveConditionsInputContextTest.cs) (revision 0df9dceeda4ff12e4b57d43b6c7bfd3e4739abf2) +++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PresentationObjects/WaveImpactAsphaltCoverWaveConditionsInputContextTest.cs (.../WaveImpactAsphaltCoverWaveConditionsInputContextTest.cs) (revision 8bab6342a9c701a3492b3f859d7ae4019aefab45) @@ -50,8 +50,8 @@ // Call var context = new WaveImpactAsphaltCoverWaveConditionsInputContext(calculation.InputParameters, calculation, - foreshoreProfiles, - assessmentSection); + assessmentSection, + foreshoreProfiles); // Assert Assert.IsInstanceOf(context); @@ -76,8 +76,8 @@ // Call TestDelegate test = () => new WaveImpactAsphaltCoverWaveConditionsInputContext(calculation.InputParameters, calculation, - null, - assessmentSection); + assessmentSection, + null); // Assert var exception = Assert.Throws(test);