Index: Ringtoets/Common/src/Ringtoets.Common.IO/AssessmentSectionSettings.cs
===================================================================
diff -u -r5253591e2ead1fb1e5e23dc0506f62c661be023c -rf014c5d99142e4f623dba5df44df33f93ed39351
--- Ringtoets/Common/src/Ringtoets.Common.IO/AssessmentSectionSettings.cs (.../AssessmentSectionSettings.cs) (revision 5253591e2ead1fb1e5e23dc0506f62c661be023c)
+++ Ringtoets/Common/src/Ringtoets.Common.IO/AssessmentSectionSettings.cs (.../AssessmentSectionSettings.cs) (revision f014c5d99142e4f623dba5df44df33f93ed39351)
@@ -29,7 +29,7 @@
///
public class AssessmentSectionSettings
{
- private AssessmentSectionSettings(string id, double n, bool isDune)
+ private AssessmentSectionSettings(string id, int n, bool isDune)
{
AssessmentSectionId = id;
N = n;
@@ -39,7 +39,7 @@
///
/// The 'length effect' parameter.
///
- public double N { get; private set; }
+ public int N { get; private set; }
///
/// Gets a value indicating whether this instance is a dune assessment section or not.
@@ -57,7 +57,7 @@
/// The identifier of the assessment section.
/// The 'length effect' parameter.
/// A fully configured .
- public static AssessmentSectionSettings CreateDikeAssessmentSectionSettings(string id, double n)
+ public static AssessmentSectionSettings CreateDikeAssessmentSectionSettings(string id, int n)
{
return new AssessmentSectionSettings(id, n, false);
}
@@ -69,7 +69,7 @@
/// A fully configured .
public static AssessmentSectionSettings CreateDuneAssessmentSectionSettings(string id)
{
- return new AssessmentSectionSettings(id, 3.0, true);
+ return new AssessmentSectionSettings(id, 3, true);
}
}
}
\ No newline at end of file