Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.IO/Model/SerializableAssessmentProcess.cs
===================================================================
diff -u -rc37e7aa9fdd38a0476335e056b33c583486ed1af -r1a21fe49fb4da6afcf09e90eb99c40cdcabf46df
--- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.IO/Model/SerializableAssessmentProcess.cs (.../SerializableAssessmentProcess.cs) (revision c37e7aa9fdd38a0476335e056b33c583486ed1af)
+++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.IO/Model/SerializableAssessmentProcess.cs (.../SerializableAssessmentProcess.cs) (revision 1a21fe49fb4da6afcf09e90eb99c40cdcabf46df)
@@ -33,21 +33,21 @@
///
/// Creates a new instance of .
///
- public SerializableAssessmentProcess() {}
+ public SerializableAssessmentProcess()
+ {
+ StartYear = 2017;
+ EndYear = 2023;
+ }
///
/// Creates a new instance of .
///
/// The unique ID of the assessment process.
/// The assessment section this process belongs to.
- /// The starting year of the assessment process.
- /// The end year of the assessment process.
/// Thrown when
/// or is null.
public SerializableAssessmentProcess(string id,
- SerializableAssessmentSection assessmentSection,
- int startYear,
- int endYear)
+ SerializableAssessmentSection assessmentSection) : this()
{
if (id == null)
{
@@ -61,8 +61,6 @@
Id = id;
AssessmentSectionId = assessmentSection.Id;
- StartYear = startYear;
- EndYear = endYear;
}
///