Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/AssessmentSectionBase.cs
===================================================================
diff -u -r75aa4fefacf584d5172dc3bdffd348b0aacb05a4 -r6946691cf40fe32509dcaaa5266600b165954319
--- Ringtoets/Integration/src/Ringtoets.Integration.Data/AssessmentSectionBase.cs (.../AssessmentSectionBase.cs) (revision 75aa4fefacf584d5172dc3bdffd348b0aacb05a4)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Data/AssessmentSectionBase.cs (.../AssessmentSectionBase.cs) (revision 6946691cf40fe32509dcaaa5266600b165954319)
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Core.Common.Base;
-
+using Core.Common.Base.Storage;
using Ringtoets.Common.Data;
using Ringtoets.Common.Placeholder;
using Ringtoets.Integration.Data.Contribution;
@@ -12,7 +12,7 @@
///
/// Base implementation of assessment sections.
///
- public abstract class AssessmentSectionBase : Observable
+ public abstract class AssessmentSectionBase : Observable, IStorable
{
///
/// Initializes a new instance of the class.
@@ -48,5 +48,10 @@
/// Gets the failure mechanisms corresponding to the assessment section.
///
public abstract IEnumerable GetFailureMechanisms();
+
+ ///
+ /// Gets or sets the unique identifier for the storage of the class.
+ ///
+ public long StorageId { get; set; }
}
}
\ No newline at end of file