diff options
| author | Mirta <mirta@twine-s.com> | 2020-12-30 16:39:52 +0200 |
|---|---|---|
| committer | Mirta <mirta@twine-s.com> | 2020-12-30 16:39:52 +0200 |
| commit | 00a491d93733d4625ad329b2ba8237f445364b3f (patch) | |
| tree | 4b24c6fa78d7648f4bb7cefafa464bb0b063fec4 /Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs | |
| parent | 124ad4150f80c6846fdee41dbbda9848c105f6e5 (diff) | |
| download | Tango-00a491d9.tar.gz Tango-00a491d9.zip | |
merge
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs | 56 |
1 files changed, 0 insertions, 56 deletions
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) |
