Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/Views/StabilityStoneCoverSectionResultRow.cs
===================================================================
diff -u -r0ff8623e873996b62996e6504278592342feae4f -r882d47b95acfd86138ae9e5eb2f26e76a7af0b3e
--- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/Views/StabilityStoneCoverSectionResultRow.cs (.../StabilityStoneCoverSectionResultRow.cs) (revision 0ff8623e873996b62996e6504278592342feae4f)
+++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/Views/StabilityStoneCoverSectionResultRow.cs (.../StabilityStoneCoverSectionResultRow.cs) (revision 882d47b95acfd86138ae9e5eb2f26e76a7af0b3e)
@@ -47,7 +47,7 @@
/// The
/// to wrap so that it can be displayed as a row.
/// Thrown when is null.
- public StabilityStoneCoverSectionResultRow(StabilityStoneCoverFailureMechanismSectionResult sectionResult)
+ public StabilityStoneCoverSectionResultRow(StabilityStoneCoverFailureMechanismSectionResult sectionResult)
: base(sectionResult)
{
Update();
@@ -309,5 +309,71 @@
combinedAssemblyCategoryGroup = FailureMechanismSectionAssemblyCategoryGroup.None;
}
}
+
+ ///
+ /// Class holding the various construction parameters for .
+ ///
+ public class ConstructionProperties
+ {
+ ///
+ /// Sets the simple assessment result index.
+ ///
+ public int SimpleAssessmentResultIndex { internal get; set; }
+
+ ///
+ /// Sets the detailed assessment result for factorized signaling norm index.
+ ///
+ public int DetailedAssessmentResultForFactorizedSignalingNormIndex { internal get; set; }
+
+ ///
+ /// Sets the detailed assessment result for signaling norm index.
+ ///
+ public int DetailedAssessmentResultForSignalingNormIndex { internal get; set; }
+
+ ///
+ /// Sets the detailed assessment result for mechanism specific lower limit norm index.
+ ///
+ public int DetailedAssessmentResultForMechanismSpecificLowerLimitNormIndex { internal get; set; }
+
+ ///
+ /// Sets the detailed assessment result for lower limit norm index.
+ ///
+ public int DetailedAssessmentResultForLowerLimitNormIndex { internal get; set; }
+
+ ///
+ /// Sets the detailed assessment result for factorized lower limit norm index.
+ ///
+ public int DetailedAssessmentResultForFactorizedLowerLimitNormIndex { internal get; set; }
+
+ ///
+ /// Sets the tailor made assessment result index.
+ ///
+ public int TailorMadeAssessmentResultIndex { internal get; set; }
+
+ ///
+ /// Sets the simple assembly category group index.
+ ///
+ public int SimpleAssemblyCategoryGroupIndex { internal get; set; }
+
+ ///
+ /// Sets the detailed assembly category group index.
+ ///
+ public int DetailedAssemblyCategoryGroupIndex { internal get; set; }
+
+ ///
+ /// Sets the tailor made assembly category group index.
+ ///
+ public int TailorMadeAssemblyCategoryGroupIndex { internal get; set; }
+
+ ///
+ /// Sets the combined assembly category group index.
+ ///
+ public int CombinedAssemblyCategoryGroupIndex { internal get; set; }
+
+ ///
+ /// Sets the manual assembly category group index.
+ ///
+ public int ManualAssemblyCategoryGroupIndex { internal get; set; }
+ }
}
}
\ No newline at end of file