Index: Riskeer/Piping/src/Riskeer.Piping.Forms/Views/PipingFailureMechanismSectionResultRow.cs =================================================================== diff -u -r5412b4f96ab3b27e5f8d053773d88859f165890e -r19c3b0d086d47d2a3896353493c7e838db757736 --- Riskeer/Piping/src/Riskeer.Piping.Forms/Views/PipingFailureMechanismSectionResultRow.cs (.../PipingFailureMechanismSectionResultRow.cs) (revision 5412b4f96ab3b27e5f8d053773d88859f165890e) +++ Riskeer/Piping/src/Riskeer.Piping.Forms/Views/PipingFailureMechanismSectionResultRow.cs (.../PipingFailureMechanismSectionResultRow.cs) (revision 19c3b0d086d47d2a3896353493c7e838db757736) @@ -33,6 +33,14 @@ /// public class PipingFailureMechanismSectionResultRow : FailureMechanismSectionResultRow { + private readonly int initialFailureMechanismResultIndex; + private readonly int initialFailureMechanismResultProfileProbabilityIndex; + private readonly int initialFailureMechanismResultSectionProbabilityIndex; + private readonly int furtherAnalysisNeededIndex; + private readonly int probabilityRefinementTypeIndex; + private readonly int refinedProfileProbabilityIndex; + private readonly int refinedSectionProbabilityIndex; + private readonly IPipingFailureMechanismSectionResultCalculateProbabilityStrategy calculateProbabilityStrategy; /// @@ -171,5 +179,46 @@ } public override void Update() {} + + /// + /// Class holding the various construction parameters for . + /// + public class ConstructionProperties + { + /// + /// Sets the initial failure mechanism result index. + /// + public int initialFailureMechanismResultIndex { internal get; set; } + + /// + /// Sets the initial failure mechanism result profile probability index. + /// + public int initialFailureMechanismResultProfileProbabilityIndex { internal get; set; } + + /// + /// Sets the initial failure mechanism result section probability index. + /// + public int initialFailureMechanismResultSectionProbabilityIndex { internal get; set; } + + /// + /// Sets the further analysis needed index. + /// + public int furtherAnalysisNeededIndex { internal get; set; } + + /// + /// Sets the probability refinement type index. + /// + public int probabilityRefinementTypeIndex { internal get; set; } + + /// + /// Sets the refined profile probability index. + /// + public int refinedProfileProbabilityIndex { internal get; set; } + + /// + /// Sets the refined section probability index. + /// + public int refinedSectionProbabilityIndex { internal get; set; } + } } } \ No newline at end of file