Index: Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresOutput.cs
===================================================================
diff -u -re6e0f3a201a644070997b531763b63f19d44df0e -rf7a8b974c53946b8cb443d359e2c6235583dd36f
--- Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresOutput.cs (.../StructuresOutput.cs) (revision e6e0f3a201a644070997b531763b63f19d44df0e)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresOutput.cs (.../StructuresOutput.cs) (revision f7a8b974c53946b8cb443d359e2c6235583dd36f)
@@ -58,30 +58,30 @@
{
get
{
- return GeneralFaultTreeIllustrationPoint != null;
+ return GeneralResult != null;
}
}
///
/// Gets the general result with the fault tree illustration points.
///
- public GeneralResult GeneralFaultTreeIllustrationPoint { get; private set; }
+ public GeneralResult GeneralResult { get; private set; }
///
/// Sets the general result of this output with the fault tree illustration points.
///
- /// The general result which belongs
+ /// The general result which belongs
/// to this output.
- /// Thrown when
+ /// Thrown when
/// is null.
- public void SetIllustrationPoints(GeneralResult generalResultFaultTreeIllustrationPoint)
+ public void SetIllustrationPoints(GeneralResult generalResult)
{
- if (generalResultFaultTreeIllustrationPoint == null)
+ if (generalResult == null)
{
- throw new ArgumentNullException(nameof(generalResultFaultTreeIllustrationPoint));
+ throw new ArgumentNullException(nameof(generalResult));
}
- GeneralFaultTreeIllustrationPoint = generalResultFaultTreeIllustrationPoint;
+ GeneralResult = generalResult;
}
}
}
\ No newline at end of file