Index: Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/GeneralInput.cs
===================================================================
diff -u -r8d79d512739df7278974068df239e1e6ccdb984c -r9141a663180003d745d91f35818a25102949dd2a
--- Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/GeneralInput.cs (.../GeneralInput.cs) (revision 8d79d512739df7278974068df239e1e6ccdb984c)
+++ Riskeer/Common/src/Riskeer.Common.Data/FailureMechanism/GeneralInput.cs (.../GeneralInput.cs) (revision 9141a663180003d745d91f35818a25102949dd2a)
@@ -38,7 +38,7 @@
private RoundedDouble n;
///
- /// Initializes a new instance of the class.
+ /// Creates a new instance of .
///
public GeneralInput()
{
Index: Riskeer/Common/test/Riskeer.Common.Data.TestUtil/TestFailurePath.cs
===================================================================
diff -u -raa99ff6f320e62508c17198001713da8c1be26d7 -r9141a663180003d745d91f35818a25102949dd2a
--- Riskeer/Common/test/Riskeer.Common.Data.TestUtil/TestFailurePath.cs (.../TestFailurePath.cs) (revision aa99ff6f320e62508c17198001713da8c1be26d7)
+++ Riskeer/Common/test/Riskeer.Common.Data.TestUtil/TestFailurePath.cs (.../TestFailurePath.cs) (revision 9141a663180003d745d91f35818a25102949dd2a)
@@ -22,7 +22,6 @@
using System;
using System.Collections.Generic;
using Core.Common.Base;
-using Core.Common.Base.Data;
using Riskeer.Common.Data.FailureMechanism;
using Riskeer.Common.Data.FailurePath;
@@ -44,14 +43,14 @@
sectionCollection = new FailureMechanismSectionCollection();
InAssembly = true;
- N = new RoundedDouble(2, 1.5);
+ GeneralInput = new GeneralInput();
InAssemblyInputComments = new Comment();
InAssemblyOutputComments = new Comment();
NotInAssemblyComments = new Comment();
AssemblyResult = new FailurePathAssemblyResult();
}
- public RoundedDouble N { get; set; }
+ public GeneralInput GeneralInput { get; }
public string Name { get; }
Index: Riskeer/Integration/src/Riskeer.Integration.Data/FailurePath/SpecificFailurePath.cs
===================================================================
diff -u -raa99ff6f320e62508c17198001713da8c1be26d7 -r9141a663180003d745d91f35818a25102949dd2a
--- Riskeer/Integration/src/Riskeer.Integration.Data/FailurePath/SpecificFailurePath.cs (.../SpecificFailurePath.cs) (revision aa99ff6f320e62508c17198001713da8c1be26d7)
+++ Riskeer/Integration/src/Riskeer.Integration.Data/FailurePath/SpecificFailurePath.cs (.../SpecificFailurePath.cs) (revision 9141a663180003d745d91f35818a25102949dd2a)
@@ -22,7 +22,6 @@
using System;
using System.Collections.Generic;
using Core.Common.Base;
-using Core.Common.Base.Data;
using Riskeer.Common.Data;
using Riskeer.Common.Data.FailureMechanism;
using Riskeer.Common.Data.FailurePath;
@@ -46,7 +45,6 @@
sectionCollection = new FailureMechanismSectionCollection();
InAssembly = true;
- N = new RoundedDouble(2, 1);
Input = new SpecificFailurePathInput();
InAssemblyInputComments = new Comment();
InAssemblyOutputComments = new Comment();
@@ -60,8 +58,6 @@
///
public SpecificFailurePathInput Input { get; }
- public RoundedDouble N { get; set; }
-
public string Name { get; set; }
public IEnumerable Sections