Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResults/GrassCoverErosionOutwardsFailureMechanismSectionResult.cs =================================================================== diff -u -r99aa5c56c58f8dddcb76b9d0e2f2f5ec4cd38e56 -r4a12b47ea94488f0716d7c61c6cefba235d7db48 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResults/GrassCoverErosionOutwardsFailureMechanismSectionResult.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResult.cs) (revision 99aa5c56c58f8dddcb76b9d0e2f2f5ec4cd38e56) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResults/GrassCoverErosionOutwardsFailureMechanismSectionResult.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResult.cs) (revision 4a12b47ea94488f0716d7c61c6cefba235d7db48) @@ -21,6 +21,7 @@ using System; using Core.Common.Base.Data; +using Core.Common.Base.Storage; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.Integration.Data.StandAlone.SectionResults @@ -29,7 +30,7 @@ /// This class holds information about the result of a calculation on section level for the /// Grass Cover Erosion Outwards failure mechanism. /// - public class GrassCoverErosionOutwardsFailureMechanismSectionResult : FailureMechanismSectionResult + public class GrassCoverErosionOutwardsFailureMechanismSectionResult : FailureMechanismSectionResult, IStorable { /// /// Creates a new instance of . @@ -54,5 +55,7 @@ /// Gets or sets the value of the tailored assessment of safety. /// public RoundedDouble AssessmentLayerThree { get; set; } + + public long StorageId { get; set; } } }