Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResults/TechnicalInnovationFailureMechanismSectionResult.cs
===================================================================
diff -u -rd3404f1930061f9fbf321c7ddb7f8a9e6fff4bc1 -r341edbfd5905c218dcbaacdc77b68ca67e5424cf
--- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResults/TechnicalInnovationFailureMechanismSectionResult.cs (.../TechnicalInnovationFailureMechanismSectionResult.cs) (revision d3404f1930061f9fbf321c7ddb7f8a9e6fff4bc1)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResults/TechnicalInnovationFailureMechanismSectionResult.cs (.../TechnicalInnovationFailureMechanismSectionResult.cs) (revision 341edbfd5905c218dcbaacdc77b68ca67e5424cf)
@@ -19,7 +19,7 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
-using Core.Common.Base.Data;
+using Ringtoets.AssemblyTool.Data;
using Ringtoets.Common.Data.FailureMechanism;
using Ringtoets.Common.Primitives;
@@ -35,10 +35,12 @@
///
/// Creates a new instance of .
///
- public TechnicalInnovationFailureMechanismSectionResult(FailureMechanismSection section) : base(section)
+ public TechnicalInnovationFailureMechanismSectionResult(FailureMechanismSection section)
+ : base(section)
{
SimpleAssessmentResult = SimpleAssessmentResultType.None;
- AssessmentLayerThree = RoundedDouble.NaN;
+ TailorMadeAssessmentResult = TailorMadeAssessmentResultType.None;
+ ManualAssemblyCategoryGroup = FailureMechanismSectionAssemblyCategoryGroup.None;
}
///
@@ -47,8 +49,18 @@
public SimpleAssessmentResultType SimpleAssessmentResult { get; set; }
///
- /// Gets or sets the value of the tailored assessment of safety.
+ /// Gets or sets the tailor made assessment result.
///
- public RoundedDouble AssessmentLayerThree { get; set; }
+ public TailorMadeAssessmentResultType TailorMadeAssessmentResult { get; set; }
+
+ ///
+ /// Gets or sets the indicator whether the combined assembly should be overwritten by .
+ ///
+ public bool UseManualAssemblyCategoryGroup { get; set; }
+
+ ///
+ /// Gets or sets the manually selected assembly category group.
+ ///
+ public FailureMechanismSectionAssemblyCategoryGroup ManualAssemblyCategoryGroup { get; set; }
}
}
\ No newline at end of file