aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/ValueObjects
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/ValueObjects')
-rw-r--r--Software/Visual_Studio/Tango.BL/ValueObjects/ActionLogDifference.cs53
-rw-r--r--Software/Visual_Studio/Tango.BL/ValueObjects/ActionLogDifferenceValue.cs46
-rw-r--r--Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs56
-rw-r--r--Software/Visual_Studio/Tango.BL/ValueObjects/JobRunLiquidQuantity.cs20
4 files changed, 0 insertions, 175 deletions
diff --git a/Software/Visual_Studio/Tango.BL/ValueObjects/ActionLogDifference.cs b/Software/Visual_Studio/Tango.BL/ValueObjects/ActionLogDifference.cs
deleted file mode 100644
index f21ae8c95..000000000
--- a/Software/Visual_Studio/Tango.BL/ValueObjects/ActionLogDifference.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-using Newtonsoft.Json;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tango.BL.ValueObjects
-{
- /// <summary>
- /// Represents an ActionLog difference node.
- /// </summary>
- public class ActionLogDifference
- {
- /// <summary>
- /// Gets or sets the name of the node.
- /// </summary>
- public String Name { get; set; }
-
- /// <summary>
- /// Gets or sets the child nodes.
- /// </summary>
- public List<ActionLogDifference> Children { get; set; }
-
- /// <summary>
- /// Gets a value indicating whether this node children contains any differences.
- /// </summary>
- [JsonIgnore]
- public virtual bool HasDifference
- {
- get { return Children.Any(x => x.HasDifference); }
- }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="ActionLogDifference"/> class.
- /// </summary>
- public ActionLogDifference()
- {
- Children = new List<ActionLogDifference>();
- }
-
- /// <summary>
- /// Returns a <see cref="System.String" /> that represents this instance.
- /// </summary>
- /// <returns>
- /// A <see cref="System.String" /> that represents this instance.
- /// </returns>
- public override string ToString()
- {
- return $"{Name} | Children[{Children.Count}]";
- }
- }
-}
diff --git a/Software/Visual_Studio/Tango.BL/ValueObjects/ActionLogDifferenceValue.cs b/Software/Visual_Studio/Tango.BL/ValueObjects/ActionLogDifferenceValue.cs
deleted file mode 100644
index 46b585f75..000000000
--- a/Software/Visual_Studio/Tango.BL/ValueObjects/ActionLogDifferenceValue.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-using Newtonsoft.Json;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tango.BL.ValueObjects
-{
- /// <summary>
- /// Represents an ActionLog difference node value comparison.
- /// </summary>
- /// <seealso cref="Tango.BL.ValueObjects.ActionLogDifference" />
- public class ActionLogDifferenceValue : ActionLogDifference
- {
- /// <summary>
- /// Gets or sets the node value before the change.
- /// </summary>
- public Object Before { get; set; }
-
- /// <summary>
- /// Gets or sets the node value after the change.
- /// </summary>
- public Object After { get; set; }
-
- /// <summary>
- /// Gets a value indicating whether before and after values are different.
- /// </summary>
- [JsonIgnore]
- public override bool HasDifference
- {
- get { return Before != After; }
- }
-
- /// <summary>
- /// Returns a <see cref="System.String" /> that represents this instance.
- /// </summary>
- /// <returns>
- /// A <see cref="System.String" /> that represents this instance.
- /// </returns>
- public override string ToString()
- {
- return $"{Name}: Before: {Before} != After: {After}";
- }
- }
-}
diff --git a/Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs b/Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs
index 7ad362c12..4b94f24af 100644
--- a/Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs
+++ b/Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs
@@ -10,72 +10,32 @@ using Tango.Core;
namespace Tango.BL.ValueObjects
{
- /// <summary>
- /// Represents a machine hardware configuration (overrides) that can be embeeded as a string in the HARDWARE_CONFIGURATION field of a machine configuration.
- /// </summary>
public class HardwareConfiguration
{
- /// <summary>
- /// Represents a hardware configuration parameter.
- /// </summary>
public class HardwareConfigurationParameter
{
- /// <summary>
- /// Gets or sets the name of the component.
- /// </summary>
public String ComponentName { get; set; }
-
- /// <summary>
- /// Gets or sets the name of the parameter.
- /// </summary>
public String ParameterName { get; set; }
-
- /// <summary>
- /// Gets or sets the value.
- /// </summary>
public Object Value { get; set; }
- /// <summary>
- /// Returns a <see cref="System.String" /> that represents this instance.
- /// </summary>
- /// <returns>
- /// A <see cref="System.String" /> that represents this instance.
- /// </returns>
public override string ToString()
{
return $"{ParameterName}: {Value}";
}
}
- /// <summary>
- /// Gets or sets the parameters.
- /// </summary>
public List<HardwareConfigurationParameter> Parameters { get; set; }
- /// <summary>
- /// Initializes a new instance of the <see cref="HardwareConfiguration"/> class.
- /// </summary>
public HardwareConfiguration()
{
Parameters = new List<HardwareConfigurationParameter>();
}
- /// <summary>
- /// Merge this hardware configuration to the specified hardware version which will result in a new instance of hardware version.
- /// </summary>
- /// <param name="hw">The hw.</param>
- /// <returns></returns>
public HardwareVersion Merge(HardwareVersion hw)
{
return Merge(this, hw);
}
- /// <summary>
- /// Merge the specified hardware configuration to the specified hardware version which will result in a new instance of hardware version.
- /// </summary>
- /// <param name="config">The configuration.</param>
- /// <param name="hw">The hw.</param>
- /// <returns></returns>
public static HardwareVersion Merge(HardwareConfiguration config, HardwareVersion hw)
{
var cloned = hw.Clone();
@@ -91,13 +51,6 @@ namespace Tango.BL.ValueObjects
return cloned;
}
- /// <summary>
- /// Merges a hardware component collection.
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="config">The configuration.</param>
- /// <param name="collection">The collection.</param>
- /// <param name="funcProp">The function property.</param>
private static void MergeCollection<T>(HardwareConfiguration config, SynchronizedObservableCollection<T> collection, Func<T, String> funcProp)
{
foreach (var component in collection)
@@ -117,20 +70,11 @@ namespace Tango.BL.ValueObjects
}
}
- /// <summary>
- /// Converts this hardware configuration to a json string.
- /// </summary>
- /// <returns></returns>
public String ToJson()
{
return JsonConvert.SerializeObject(this);
}
- /// <summary>
- /// Creates an instance of <see cref="HardwareConfiguration"/> from the specified json string.
- /// </summary>
- /// <param name="json">The json.</param>
- /// <returns></returns>
public static HardwareConfiguration FromJson(String json)
{
if (json != null)
diff --git a/Software/Visual_Studio/Tango.BL/ValueObjects/JobRunLiquidQuantity.cs b/Software/Visual_Studio/Tango.BL/ValueObjects/JobRunLiquidQuantity.cs
deleted file mode 100644
index 9950e1c26..000000000
--- a/Software/Visual_Studio/Tango.BL/ValueObjects/JobRunLiquidQuantity.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.BL.Enumerations;
-
-namespace Tango.BL.ValueObjects
-{
- public class JobRunLiquidQuantity
- {
- public LiquidTypes LiquidType { get; set; }
- public int Quantity { get; set; }
-
- public override string ToString()
- {
- return $"{LiquidType}: {Quantity}";
- }
- }
-}