From fb59c6dd769996977c02c83b90ce74591412de75 Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Tue, 12 Oct 2021 17:11:01 +0300 Subject: 1). Save results om selected machine. 2). Notification about save RML on back from selected RML. Related Work Items: #5768 --- .../Views/MachineTestResultsView.xaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views') diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/MachineTestResultsView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/MachineTestResultsView.xaml index 27bffbebb..bfb8a58d0 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/MachineTestResultsView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/MachineTestResultsView.xaml @@ -11,12 +11,14 @@ xmlns:mahapps="http://metro.mahapps.com/winfx/xaml/controls" xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" xmlns:global="clr-namespace:Tango.MachineStudio.ThreadExtensions" + xmlns:converters="clr-namespace:Tango.SharedUI.Converters;assembly=Tango.SharedUI" mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="1200" Background="Transparent" d:DataContext="{d:DesignInstance Type=vm:MainViewVM, IsDesignTimeCreatable=False}" DataContext="{x:Static global:ViewModelLocator.MainViewVM}"> + @@ -41,7 +43,7 @@ - + - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml index 2d37fcc3e..53ed5dc2c 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml @@ -371,9 +371,7 @@ - - - - + @@ -385,9 +383,7 @@ - - - - + diff --git a/Software/Visual_Studio/Tango.BL/Builders/ColorProcessParametersBuilder.cs b/Software/Visual_Studio/Tango.BL/Builders/ColorProcessParametersBuilder.cs index de16be5d0..1bd94fd6b 100644 --- a/Software/Visual_Studio/Tango.BL/Builders/ColorProcessParametersBuilder.cs +++ b/Software/Visual_Studio/Tango.BL/Builders/ColorProcessParametersBuilder.cs @@ -33,5 +33,14 @@ namespace Tango.BL.Builders }); } + + public virtual ColorProcessParametersBuilder WithColorProcessInkUptake() + { + return AddStep(3, () => + { + Context.ColorProcessInkUptake.Where(x => x.ColorProcessParametersGuid == Entity.Guid).OrderBy(x => x.InkUptakeZone).ToList(); + + }); + } } } diff --git a/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTO.cs b/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTO.cs new file mode 100644 index 000000000..2509ebf49 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTO.cs @@ -0,0 +1,14 @@ + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.BL.DTO +{ + public class ColorProcessInkUptakeDTO : ColorProcessInkUptakeDTOBase + { + + } +} diff --git a/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTOBase.cs new file mode 100644 index 000000000..2046b2395 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTOBase.cs @@ -0,0 +1,49 @@ + +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Tango Observables Generator +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. Do not modify! +// +//------------------------------------------------------------------------------ + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.BL.Entities; + +namespace Tango.BL.DTO +{ + public abstract class ColorProcessInkUptakeDTOBase : ObservableEntityDTO + { + + /// + /// color process parameters guid + /// + public String ColorProcessParametersGuid + { + get; set; + } + + /// + /// ink uptake zone + /// + public Int32 InkUptakeZone + { + get; set; + } + + /// + /// ink value + /// + public Nullable InkValue + { + get; set; + } + + } +} diff --git a/Software/Visual_Studio/Tango.BL/DTO/MediaMaterialDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/MediaMaterialDTOBase.cs index 1364df830..427b19a2d 100644 --- a/Software/Visual_Studio/Tango.BL/DTO/MediaMaterialDTOBase.cs +++ b/Software/Visual_Studio/Tango.BL/DTO/MediaMaterialDTOBase.cs @@ -37,5 +37,13 @@ namespace Tango.BL.DTO get; set; } + /// + /// description + /// + public String Description + { + get; set; + } + } } diff --git a/Software/Visual_Studio/Tango.BL/DTO/RubbingResultDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/RubbingResultDTOBase.cs index 3c569ce30..fd33dcfd7 100644 --- a/Software/Visual_Studio/Tango.BL/DTO/RubbingResultDTOBase.cs +++ b/Software/Visual_Studio/Tango.BL/DTO/RubbingResultDTOBase.cs @@ -45,22 +45,6 @@ namespace Tango.BL.DTO get; set; } - /// - /// gs 100 min - /// - public Nullable Gs100Min - { - get; set; - } - - /// - /// gs 100 max - /// - public Nullable Gs100Max - { - get; set; - } - /// /// deltae cie 200 /// @@ -70,17 +54,17 @@ namespace Tango.BL.DTO } /// - /// gs 200 min + /// gs 100 /// - public Nullable Gs200Min + public Nullable Gs100 { get; set; } /// - /// gs 200 max + /// gs 200 /// - public Nullable Gs200Max + public Nullable Gs200 { get; set; } diff --git a/Software/Visual_Studio/Tango.BL/Entities/ColorProcessInkUptake.cs b/Software/Visual_Studio/Tango.BL/Entities/ColorProcessInkUptake.cs new file mode 100644 index 000000000..86109dfd4 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/Entities/ColorProcessInkUptake.cs @@ -0,0 +1,42 @@ +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.BL.Enumerations; + +namespace Tango.BL.Entities +{ + public class ColorProcessInkUptake: ColorProcessInkUptakeBase + { + public ColorProcessInkUptake() : base() + { + + } + public override void Delete(ObservablesContext context) + { + base.Delete(context); + + context.ColorProcessInkUptake.Remove(this); + } + + //InkUptakeZoneTypes + #region value to enum conversion + + [NotMapped] + [JsonIgnore] + public InkUptakeZoneTypes InkUptakeZoneType + { + get { return (InkUptakeZoneTypes)InkUptakeZone; } + set + { + InkUptakeZone = (int)value; + RaisePropertyChangedAuto(); + } + } + + #endregion + } +} diff --git a/Software/Visual_Studio/Tango.BL/Entities/ColorProcessInkUptakeBase.cs b/Software/Visual_Studio/Tango.BL/Entities/ColorProcessInkUptakeBase.cs new file mode 100644 index 000000000..bfa90ed63 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/Entities/ColorProcessInkUptakeBase.cs @@ -0,0 +1,182 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Tango Observables Generator +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. Do not modify! +// +//------------------------------------------------------------------------------ + +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +using System.Xml.Serialization; +using Newtonsoft.Json; +using System.Linq; +using Tango.DAL.Remote.DB; +using Tango.Core; +using System.ComponentModel; +using Tango.Core.CustomAttributes; + +namespace Tango.BL.Entities +{ + [Table("COLOR_PROCESS_INK_UPTAKE")] + public abstract class ColorProcessInkUptakeBase : ObservableEntity + { + + public event EventHandler InkUptakeZoneChanged; + + public event EventHandler> InkValueChanged; + + public event EventHandler ColorProcessParametersChanged; + + protected String _colorprocessparametersguid; + + /// + /// Gets or sets the colorprocessinkuptakebase color process parameters guid. + /// + + [Column("COLOR_PROCESS_PARAMETERS_GUID")] + [ForeignKey("ColorProcessParameters")] + + public String ColorProcessParametersGuid + { + get + { + return _colorprocessparametersguid; + } + + set + { + if (_colorprocessparametersguid != value) + { + _colorprocessparametersguid = value; + + } + } + } + + protected Int32 _inkuptakezone; + + /// + /// Gets or sets the colorprocessinkuptakebase ink uptake zone. + /// + + [Column("INK_UPTAKE_ZONE")] + + public Int32 InkUptakeZone + { + get + { + return _inkuptakezone; + } + + set + { + if (_inkuptakezone != value) + { + _inkuptakezone = value; + + OnInkUptakeZoneChanged(value); + + } + } + } + + protected Nullable _inkvalue; + + /// + /// Gets or sets the colorprocessinkuptakebase ink value. + /// + + [Column("INK_VALUE")] + + public Nullable InkValue + { + get + { + return _inkvalue; + } + + set + { + if (_inkvalue != value) + { + _inkvalue = value; + + OnInkValueChanged(value); + + } + } + } + + protected ColorProcessParameter _colorprocessparameters; + + /// + /// Gets or sets the colorprocessinkuptakebase color process parameters. + /// + + [XmlIgnore] + [JsonIgnore] + public virtual ColorProcessParameter ColorProcessParameters + { + get + { + return _colorprocessparameters; + } + + set + { + if (_colorprocessparameters != value) + { + _colorprocessparameters = value; + + if (ColorProcessParameters != null) + { + ColorProcessParametersGuid = ColorProcessParameters.Guid; + } + + OnColorProcessParametersChanged(value); + + } + } + } + + /// + /// Called when the InkUptakeZone has changed. + /// + protected virtual void OnInkUptakeZoneChanged(Int32 inkuptakezone) + { + InkUptakeZoneChanged?.Invoke(this, inkuptakezone); + RaisePropertyChanged(nameof(InkUptakeZone)); + } + + /// + /// Called when the InkValue has changed. + /// + protected virtual void OnInkValueChanged(Nullable inkvalue) + { + InkValueChanged?.Invoke(this, inkvalue); + RaisePropertyChanged(nameof(InkValue)); + } + + /// + /// Called when the ColorProcessParameters has changed. + /// + protected virtual void OnColorProcessParametersChanged(ColorProcessParameter colorprocessparameters) + { + ColorProcessParametersChanged?.Invoke(this, colorprocessparameters); + RaisePropertyChanged(nameof(ColorProcessParameters)); + } + + /// + /// Initializes a new instance of the class. + /// + public ColorProcessInkUptakeBase() : base() + { + } + } +} diff --git a/Software/Visual_Studio/Tango.BL/Entities/ColorProcessParameterBase.cs b/Software/Visual_Studio/Tango.BL/Entities/ColorProcessParameterBase.cs index 864a4a7ba..9d856691b 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/ColorProcessParameterBase.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/ColorProcessParameterBase.cs @@ -39,6 +39,8 @@ namespace Tango.BL.Entities public event EventHandler RmlsExtensionsChanged; + public event EventHandler> ColorProcessInkUptakeChanged; + public event EventHandler MachineChanged; protected String _rmlsextensionsguid; @@ -256,6 +258,31 @@ namespace Tango.BL.Entities } } + protected SynchronizedObservableCollection _colorprocessinkuptake; + + /// + /// Gets or sets the colorprocessparameterbase color process ink uptake. + /// + + public virtual SynchronizedObservableCollection ColorProcessInkUptake + { + get + { + return _colorprocessinkuptake; + } + + set + { + if (_colorprocessinkuptake != value) + { + _colorprocessinkuptake = value; + + OnColorProcessInkUptakeChanged(value); + + } + } + } + protected Machine _machine; /// @@ -342,6 +369,15 @@ namespace Tango.BL.Entities RaisePropertyChanged(nameof(RmlsExtensions)); } + /// + /// Called when the ColorProcessInkUptake has changed. + /// + protected virtual void OnColorProcessInkUptakeChanged(SynchronizedObservableCollection colorprocessinkuptake) + { + ColorProcessInkUptakeChanged?.Invoke(this, colorprocessinkuptake); + RaisePropertyChanged(nameof(ColorProcessInkUptake)); + } + /// /// Called when the Machine has changed. /// @@ -361,6 +397,8 @@ namespace Tango.BL.Entities ColorProcessFactors = new SynchronizedObservableCollection(); + ColorProcessInkUptake = new SynchronizedObservableCollection(); + } } } diff --git a/Software/Visual_Studio/Tango.BL/Entities/MediaMaterialBase.cs b/Software/Visual_Studio/Tango.BL/Entities/MediaMaterialBase.cs index 860337fae..102906c9b 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/MediaMaterialBase.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/MediaMaterialBase.cs @@ -31,6 +31,8 @@ namespace Tango.BL.Entities public event EventHandler CodeChanged; + public event EventHandler DescriptionChanged; + public event EventHandler> RmlsChanged; protected String _name; @@ -87,6 +89,33 @@ namespace Tango.BL.Entities } } + protected String _description; + + /// + /// Gets or sets the mediamaterialbase description. + /// + + [Column("DESCRIPTION")] + + public String Description + { + get + { + return _description; + } + + set + { + if (_description != value) + { + _description = value; + + OnDescriptionChanged(value); + + } + } + } + protected SynchronizedObservableCollection _rmls; /// @@ -130,6 +159,15 @@ namespace Tango.BL.Entities RaisePropertyChanged(nameof(Code)); } + /// + /// Called when the Description has changed. + /// + protected virtual void OnDescriptionChanged(String description) + { + DescriptionChanged?.Invoke(this, description); + RaisePropertyChanged(nameof(Description)); + } + /// /// Called when the Rmls has changed. /// diff --git a/Software/Visual_Studio/Tango.BL/Entities/RubbingResult.cs b/Software/Visual_Studio/Tango.BL/Entities/RubbingResult.cs index 10036f19a..eb52386a2 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/RubbingResult.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/RubbingResult.cs @@ -14,11 +14,9 @@ namespace Tango.BL.Entities public RubbingResult(): base() { DeltaeCie100 = 0.0; - Gs100Min = 0; - Gs100Max = 0; + Gs100 = 1.0; DeltaeCie200 = 0.0; - Gs200Min = 0; - Gs200Max = 0; + Gs200 = 1.0; } #region value to enum conversion diff --git a/Software/Visual_Studio/Tango.BL/Entities/RubbingResultBase.cs b/Software/Visual_Studio/Tango.BL/Entities/RubbingResultBase.cs index c19d8b7a8..d426718f9 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/RubbingResultBase.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/RubbingResultBase.cs @@ -31,15 +31,11 @@ namespace Tango.BL.Entities public event EventHandler> DeltaeCie100Changed; - public event EventHandler> Gs100MinChanged; - - public event EventHandler> Gs100MaxChanged; - public event EventHandler> DeltaeCie200Changed; - public event EventHandler> Gs200MinChanged; + public event EventHandler> Gs100Changed; - public event EventHandler> Gs200MaxChanged; + public event EventHandler> Gs200Changed; public event EventHandler RmlExtensionTestResultsChanged; @@ -123,60 +119,6 @@ namespace Tango.BL.Entities } } - protected Nullable _gs100min; - - /// - /// Gets or sets the rubbingresultbase gs 100 min. - /// - - [Column("GS_100_MIN")] - - public Nullable Gs100Min - { - get - { - return _gs100min; - } - - set - { - if (_gs100min != value) - { - _gs100min = value; - - OnGs100MinChanged(value); - - } - } - } - - protected Nullable _gs100max; - - /// - /// Gets or sets the rubbingresultbase gs 100 max. - /// - - [Column("GS_100_MAX")] - - public Nullable Gs100Max - { - get - { - return _gs100max; - } - - set - { - if (_gs100max != value) - { - _gs100max = value; - - OnGs100MaxChanged(value); - - } - } - } - protected Nullable _deltaecie200; /// @@ -204,55 +146,55 @@ namespace Tango.BL.Entities } } - protected Nullable _gs200min; + protected Nullable _gs100; /// - /// Gets or sets the rubbingresultbase gs 200 min. + /// Gets or sets the rubbingresultbase gs 100. /// - [Column("GS_200_MIN")] + [Column("GS_100")] - public Nullable Gs200Min + public Nullable Gs100 { get { - return _gs200min; + return _gs100; } set { - if (_gs200min != value) + if (_gs100 != value) { - _gs200min = value; + _gs100 = value; - OnGs200MinChanged(value); + OnGs100Changed(value); } } } - protected Nullable _gs200max; + protected Nullable _gs200; /// - /// Gets or sets the rubbingresultbase gs 200 max. + /// Gets or sets the rubbingresultbase gs 200. /// - [Column("GS_200_MAX")] + [Column("GS_200")] - public Nullable Gs200Max + public Nullable Gs200 { get { - return _gs200max; + return _gs200; } set { - if (_gs200max != value) + if (_gs200 != value) { - _gs200max = value; + _gs200 = value; - OnGs200MaxChanged(value); + OnGs200Changed(value); } } @@ -308,24 +250,6 @@ namespace Tango.BL.Entities RaisePropertyChanged(nameof(DeltaeCie100)); } - /// - /// Called when the Gs100Min has changed. - /// - protected virtual void OnGs100MinChanged(Nullable gs100min) - { - Gs100MinChanged?.Invoke(this, gs100min); - RaisePropertyChanged(nameof(Gs100Min)); - } - - /// - /// Called when the Gs100Max has changed. - /// - protected virtual void OnGs100MaxChanged(Nullable gs100max) - { - Gs100MaxChanged?.Invoke(this, gs100max); - RaisePropertyChanged(nameof(Gs100Max)); - } - /// /// Called when the DeltaeCie200 has changed. /// @@ -336,21 +260,21 @@ namespace Tango.BL.Entities } /// - /// Called when the Gs200Min has changed. + /// Called when the Gs100 has changed. /// - protected virtual void OnGs200MinChanged(Nullable gs200min) + protected virtual void OnGs100Changed(Nullable gs100) { - Gs200MinChanged?.Invoke(this, gs200min); - RaisePropertyChanged(nameof(Gs200Min)); + Gs100Changed?.Invoke(this, gs100); + RaisePropertyChanged(nameof(Gs100)); } /// - /// Called when the Gs200Max has changed. + /// Called when the Gs200 has changed. /// - protected virtual void OnGs200MaxChanged(Nullable gs200max) + protected virtual void OnGs200Changed(Nullable gs200) { - Gs200MaxChanged?.Invoke(this, gs200max); - RaisePropertyChanged(nameof(Gs200Max)); + Gs200Changed?.Invoke(this, gs200); + RaisePropertyChanged(nameof(Gs200)); } /// diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/BitTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/BitTypes.cs index e0c35c0c5..3f8c9df0f 100644 --- a/Software/Visual_Studio/Tango.BL/Enumerations/BitTypes.cs +++ b/Software/Visual_Studio/Tango.BL/Enumerations/BitTypes.cs @@ -20,1150 +20,1150 @@ namespace Tango.BL.Enumerations { /// - /// () + /// (Machine input voltage is not too high) /// - [Description("")] + [Description("Machine input voltage is not too high")] IncomingVoltageTooHigh = 1000, /// - /// () + /// (Machine input voltage is not too low) /// - [Description("")] + [Description("Machine input voltage is not too low")] IncomingVoltageTooLow = 1001, /// - /// () + /// (Flash file system exists) /// - [Description("")] + [Description("Flash file system exists")] FlashFileSystemMissing = 1002, /// - /// () + /// (Hardware version file exists) /// - [Description("")] + [Description("Hardware version file exists")] HWVersionFileMissing = 1003, /// - /// () + /// (Alarms file exists) /// - [Description("")] + [Description("Alarms file exists")] AlarmFileMissing = 1004, /// - /// () + /// (Communication with ink RFID reader ) /// - [Description("")] + [Description("Communication with ink RFID reader ")] InkRFIDReader = 2000, /// - /// () + /// (Communication with waste 1 RFID reader ) /// - [Description("")] + [Description("Communication with waste 1 RFID reader ")] Waste1RFIDReader = 2001, /// - /// () + /// (Communication with waste 2 RFID reader ) /// - [Description("")] + [Description("Communication with waste 2 RFID reader ")] Waste2RFIDReader = 2002, /// - /// () + /// (Communication with Black dispenser ) /// - [Description("")] - Dispenser1I2CComm = 3000, + [Description("Communication with Black dispenser ")] + DispenserKI2CComm = 3000, /// - /// () + /// (Communication with Cyan dispenser ) /// - [Description("")] - Dispenser2I2CComm = 3001, + [Description("Communication with Cyan dispenser ")] + DispenserCI2CComm = 3001, /// - /// () + /// (Communication with Magenta dispenser ) /// - [Description("")] - Dispenser3I2CComm = 3002, + [Description("Communication with Magenta dispenser ")] + DispenserMI2CComm = 3002, /// - /// () + /// (Communication with Yellow dispenser) /// - [Description("")] - Dispenser4I2CComm = 3003, + [Description("Communication with Yellow dispenser")] + DispenserYI2CComm = 3003, /// - /// () + /// (Communication with Transparent ink dispenser) /// - [Description("")] - Dispenser5I2CComm = 3004, + [Description("Communication with Transparent ink dispenser")] + DispenserTII2CComm = 3004, /// - /// () + /// (Communication with Light Cyan dispenser) /// - [Description("")] - Dispenser6I2CComm = 3005, + [Description("Communication with Light Cyan dispenser")] + DispenserLCI2CComm = 3005, /// - /// () + /// (Communication with Light Magenta dispenser) /// - [Description("")] - Dispenser7I2CComm = 3006, + [Description("Communication with Light Magenta dispenser")] + DispenserLMI2CComm = 3006, /// - /// () + /// (Communication with Light Yellow dispenser) /// - [Description("")] - Dispenser8I2CComm = 3007, + [Description("Communication with Light Yellow dispenser")] + DispenserLYI2CComm = 3007, /// - /// () + /// (Head type identification) /// - [Description("")] + [Description("Head type identification")] HeadTypeIdentified = 3008, /// - /// () + /// (WHS type identification) /// - [Description("")] + [Description("WHS type identification")] WHSTypeIdentified = 3009, /// - /// () + /// (Communication with Shinko controller) /// - [Description("")] + [Description("Communication with Shinko controller")] CommunicationWithShinko = 4000, /// - /// () + /// (Communication with BTSR) /// - [Description("")] + [Description("Communication with BTSR")] CommunicationWithBTSR = 4001, /// - /// () + /// (USB communication) /// - [Description("")] + [Description("USB communication")] USBCommunication = 5000, /// - /// () + /// (Read electrical cabinet big fan RPM) /// - [Description("")] - DrawerBigFan = 6000, + [Description("Read electrical cabinet big fan RPM")] + ECBigFan = 6000, /// - /// () + /// (Read electrical cabinet small fan RPM) /// - [Description("")] - DrawerSmall1Fan = 6001, + [Description("Read electrical cabinet small fan RPM")] + ECSmall1Fan = 6001, /// - /// () + /// (Read electrical cabinet small fan RPM) /// - [Description("")] - DrawerSmall2Fan = 6002, + [Description("Read electrical cabinet small fan RPM")] + ECSmall2Fan = 6002, /// - /// () + /// (Read electrical cabinet small fan RPM) /// - [Description("")] - DrawerSmall3Fan = 6003, + [Description("Read electrical cabinet small fan RPM")] + ECSmall3Fan = 6003, /// - /// () + /// (Read electrical cabinet small fan RPM) /// - [Description("")] - DrawerSmall4Fan = 6004, + [Description("Read electrical cabinet small fan RPM")] + ECSmall4Fan = 6004, /// - /// () + /// (Read system fan 1 RPM) /// - [Description("")] + [Description("Read system fan 1 RPM")] SystemFan1 = 6005, /// - /// () + /// (Read system fan 2 RPM) /// - [Description("")] + [Description("Read system fan 2 RPM")] SystemFan2 = 6006, /// - /// () + /// (Read system fan 3 RPM) /// - [Description("")] + [Description("Read system fan 3 RPM")] SystemFan3 = 6007, /// - /// () + /// (Read winder dancer status) /// - [Description("")] + [Description("Read winder dancer status")] WinderDancerStatusRead = 7000, /// - /// () + /// (Read puller dancer status) /// - [Description("")] + [Description("Read puller dancer status")] PullerDancerStatusRead = 7001, /// - /// () + /// (Read feeder dancer status) /// - [Description("")] + [Description("Read feeder dancer status")] FeederDancerStatusRead = 7002, /// - /// () + /// (Read dryer loading arm status) /// - [Description("")] + [Description("Read dryer loading arm status")] DryerEncoderStatusRead = 7003, /// - /// () + /// (Read dryer air temperature) /// - [Description("")] + [Description("Read dryer air temperature")] Pt100ReadDryerAir = 8000, /// - /// () + /// (Read dryer zone 1 temperature) /// - [Description("")] + [Description("Read dryer zone 1 temperature")] Pt100ReadDryer1 = 8001, /// - /// () + /// (Read dryer zone 2 temperature) /// - [Description("")] + [Description("Read dryer zone 2 temperature")] Pt100ReadDryer2 = 8002, /// - /// () + /// (Read head zone 1 temperature) /// - [Description("")] - Pt100ReadHead1 = 8003, + [Description("Read head zone 1 temperature")] + Pt100ReadHeadZone1 = 8003, /// - /// () + /// (Read head zone 2 temperature) /// - [Description("")] - Pt100ReadHead2 = 8004, + [Description("Read head zone 2 temperature")] + Pt100ReadHeadZone2 = 8004, /// - /// () + /// (Read head zone 3 temperature) /// - [Description("")] - Pt100ReadHead3 = 8005, + [Description("Read head zone 3 temperature")] + Pt100ReadHeadZone3 = 8005, /// - /// () + /// (Read head zone 4 temperature) /// - [Description("")] - Pt100ReadHead4 = 8006, + [Description("Read head zone 4 temperature")] + Pt100ReadHeadZone4 = 8006, /// - /// () + /// (Read head zone 5 temperature) /// - [Description("")] - Pt100ReadHead5 = 8007, + [Description("Read head zone 5 temperature")] + Pt100ReadHeadZone5 = 8007, /// - /// () + /// (Read head zone 6 temperature) /// - [Description("")] - Pt100ReadHead6 = 8008, + [Description("Read head zone 6 temperature")] + Pt100ReadHeadZone6 = 8008, /// - /// () + /// (Read mixer temperature) /// - [Description("")] + [Description("Read mixer temperature")] Pt100ReadMixer = 8009, /// - /// () + /// (Read head zone 7 temperature) /// - [Description("")] - Pt100ReadHead7 = 8010, + [Description("Read head zone 7 temperature")] + Pt100ReadHeadZone7 = 8010, /// - /// () + /// (Read head zone 8 temperature) /// - [Description("")] - Pt100ReadHead8 = 8011, + [Description("Read head zone 8 temperature")] + Pt100ReadHeadZone8 = 8011, /// - /// () + /// (Read head zone 9 temperature) /// - [Description("")] - Pt100ReadHead9 = 8012, + [Description("Read head zone 9 temperature")] + Pt100ReadHeadZone9 = 8012, /// - /// () + /// (Read head zone 10 temperature) /// - [Description("")] - Pt100ReadHead10 = 8013, + [Description("Read head zone 10 temperature")] + Pt100ReadHeadZone10 = 8013, /// - /// () + /// (Read head zone 11 temperature) /// - [Description("")] - Pt100ReadHead11 = 8014, + [Description("Read head zone 11 temperature")] + Pt100ReadHeadZone11 = 8014, /// - /// () + /// (Read head zone 12 temperature) /// - [Description("")] - Pt100ReadHead12 = 8015, + [Description("Read head zone 12 temperature")] + Pt100ReadHeadZone12 = 8015, /// - /// () + /// (Read head right blower temperature) /// - [Description("")] + [Description("Read head right blower temperature")] Pt100ReadHeadBlowerIn = 8016, /// - /// () + /// (Read head left blower temperature) /// - [Description("")] + [Description("Read head left blower temperature")] Pt100ReadHeadBlowerOut = 8017, /// - /// () + /// (Read WHS cooler temperature) /// - [Description("")] + [Description("Read WHS cooler temperature")] Pt100ReadWHS = 8018, /// - /// () + /// (Read electrical cabinet temperature) /// - [Description("")] + [Description("Read electrical cabinet temperature")] Pt100ReadElectricalCabinet = 8019, /// - /// () + /// (Read machine internal temperature) /// - [Description("")] + [Description("Read machine internal temperature")] Pt100ReadMachine = 8020, /// - /// () + /// (No current break in dryer zone 1) /// - [Description("")] + [Description("No current break in dryer zone 1")] CurrentBreakDryer1 = 8021, /// - /// () + /// (No current break in dryer zone 2) /// - [Description("")] + [Description("No current break in dryer zone 2")] CurrentBreakDryer2 = 8022, /// - /// () + /// (No current break in head zone 1) /// - [Description("")] - CurrentBreakHead1 = 8023, + [Description("No current break in head zone 1")] + CurrentBreakHeadZone1 = 8023, /// - /// () + /// (No current break in head zone 2) /// - [Description("")] - CurrentBreakHead2 = 8024, + [Description("No current break in head zone 2")] + CurrentBreakHeadZone2 = 8024, /// - /// () + /// (No current break in head zone 3) /// - [Description("")] - CurrentBreakHead3 = 8025, + [Description("No current break in head zone 3")] + CurrentBreakHeadZone3 = 8025, /// - /// () + /// (No current break in head zone 4) /// - [Description("")] - CurrentBreakHead4 = 8026, + [Description("No current break in head zone 4")] + CurrentBreakHeadZone4 = 8026, /// - /// () + /// (No current break in head zone 5) /// - [Description("")] - CurrentBreakHead5 = 8027, + [Description("No current break in head zone 5")] + CurrentBreakHeadZone5 = 8027, /// - /// () + /// (No current break in head zone 6) /// - [Description("")] - CurrentBreakHead6 = 8028, + [Description("No current break in head zone 6")] + CurrentBreakHeadZone6 = 8028, /// - /// () + /// (No current break in mixer) /// - [Description("")] + [Description("No current break in mixer")] CurrentBreakMixer = 8029, /// - /// () + /// (No current break in head zone 7) /// - [Description("")] - CurrentBreakHead7 = 8030, + [Description("No current break in head zone 7")] + CurrentBreakHeadZone7 = 8030, /// - /// () + /// (No current break in head zone 8) /// - [Description("")] - CurrentBreakHead8 = 8031, + [Description("No current break in head zone 8")] + CurrentBreakHeadZone8 = 8031, /// - /// () + /// (No current break in head zone 9) /// - [Description("")] - CurrentBreakHead9 = 8032, + [Description("No current break in head zone 9")] + CurrentBreakHeadZone9 = 8032, /// - /// () + /// (No current break in head zone 10) /// - [Description("")] - CurrentBreakHead10 = 8033, + [Description("No current break in head zone 10")] + CurrentBreakHeadZone10 = 8033, /// - /// () + /// (No current break in head zone 11) /// - [Description("")] - CurrentBreakHead11 = 8034, + [Description("No current break in head zone 11")] + CurrentBreakHeadZone11 = 8034, /// - /// () + /// (No current break in head zone 12) /// - [Description("")] - CurrentBreakHead12 = 8035, + [Description("No current break in head zone 12")] + CurrentBreakHeadZone12 = 8035, /// - /// () + /// (No current break in head right blower) /// - [Description("")] + [Description("No current break in head right blower")] CurrentBreakHeadBlowerIn = 8036, /// - /// () + /// (No current break in head left blower) /// - [Description("")] + [Description("No current break in head left blower")] CurrentBreakHeadBlowerOut = 8037, /// - /// () + /// (Read dryer zone 1 current) /// - [Description("")] + [Description("Read dryer zone 1 current")] CurrentDryer1 = 8038, /// - /// () + /// (Read dryer zone 2 current) /// - [Description("")] + [Description("Read dryer zone 2 current")] CurrentDryer2 = 8039, /// - /// () + /// (Read head zone 1 current) /// - [Description("")] - CurrentHead1 = 8040, + [Description("Read head zone 1 current")] + CurrentHeadZone1 = 8040, /// - /// () + /// (Read head zone 2 current) /// - [Description("")] - CurrentHead2 = 8041, + [Description("Read head zone 2 current")] + CurrentHeadZone2 = 8041, /// - /// () + /// (Read head zone 3 current) /// - [Description("")] - CurrentHead3 = 8042, + [Description("Read head zone 3 current")] + CurrentHeadZone3 = 8042, /// - /// () + /// (Read head zone 4 current) /// - [Description("")] - CurrentHead4 = 8043, + [Description("Read head zone 4 current")] + CurrentHeadZone4 = 8043, /// - /// () + /// (Read head zone 5 current) /// - [Description("")] - CurrentHead5 = 8044, + [Description("Read head zone 5 current")] + CurrentHeadZone5 = 8044, /// - /// () + /// (Read head zone 6 current) /// - [Description("")] - CurrentHead6 = 8045, + [Description("Read head zone 6 current")] + CurrentHeadZone6 = 8045, /// - /// () + /// (Read mixer current) /// - [Description("")] + [Description("Read mixer current")] CurrentMixer = 8046, /// - /// () + /// (Read head zone 7 current) /// - [Description("")] - CurrentHead7 = 8047, + [Description("Read head zone 7 current")] + CurrentHeadZone7 = 8047, /// - /// () + /// (Read head zone 8 current) /// - [Description("")] - CurrentHead8 = 8048, + [Description("Read head zone 8 current")] + CurrentHeadZone8 = 8048, /// - /// () + /// (Read head zone 9 current) /// - [Description("")] - CurrentHead9 = 8049, + [Description("Read head zone 9 current")] + CurrentHeadZone9 = 8049, /// - /// () + /// (Read head zone 10 current) /// - [Description("")] - CurrentHead10 = 8050, + [Description("Read head zone 10 current")] + CurrentHeadZone10 = 8050, /// - /// () + /// (Read head zone 11 current) /// - [Description("")] - CurrentHead11 = 8051, + [Description("Read head zone 11 current")] + CurrentHeadZone11 = 8051, /// - /// () + /// (Read head zone 12 current) /// - [Description("")] - CurrentHead12 = 8052, + [Description("Read head zone 12 current")] + CurrentHeadZone12 = 8052, /// - /// () + /// (Read head right blower current) /// - [Description("")] + [Description("Read head right blower current")] CurrentHeadBlowerIn = 8053, /// - /// () + /// (Read head left blower current ) /// - [Description("")] + [Description("Read head left blower current ")] CurrentHeadBlowerOut = 8054, /// - /// () + /// (Dryer zone 1 heat up) /// - [Description("")] + [Description("Dryer zone 1 heat up")] HeaterDryer1 = 8055, /// - /// () + /// (Dryer zone 2 heat up) /// - [Description("")] + [Description("Dryer zone 2 heat up")] HeaterDryer2 = 8056, /// - /// () + /// (Head zone 1 heat up) /// - [Description("")] - HeaterHead1 = 8057, + [Description("Head zone 1 heat up")] + HeaterHeadZone1 = 8057, /// - /// () + /// (Head zone 2 heat up) /// - [Description("")] - HeaterHead2 = 8058, + [Description("Head zone 2 heat up")] + HeaterHeadZone2 = 8058, /// - /// () + /// (Head zone 3 heat up) /// - [Description("")] - HeaterHead3 = 8059, + [Description("Head zone 3 heat up")] + HeaterHeadZone3 = 8059, /// - /// () + /// (Head zone 4 heat up) /// - [Description("")] - HeaterHead4 = 8060, + [Description("Head zone 4 heat up")] + HeaterHeadZone4 = 8060, /// - /// () + /// (Head zone 5 heat up) /// - [Description("")] - HeaterHead5 = 8061, + [Description("Head zone 5 heat up")] + HeaterHeadZone5 = 8061, /// - /// () + /// (Head zone 6 heat up) /// - [Description("")] - HeaterHead6 = 8062, + [Description("Head zone 6 heat up")] + HeaterHeadZone6 = 8062, /// - /// () + /// (Mixer heat up) /// - [Description("")] + [Description("Mixer heat up")] HeaterMixer = 8063, /// - /// () + /// (Head zone 7 heat up) /// - [Description("")] - HeaterHead7 = 8064, + [Description("Head zone 7 heat up")] + HeaterHeadZone7 = 8064, /// - /// () + /// (Head zone 8 heat up) /// - [Description("")] - HeaterHead8 = 8065, + [Description("Head zone 8 heat up")] + HeaterHeadZone8 = 8065, /// - /// () + /// (Head zone 9 heat up) /// - [Description("")] - HeaterHead9 = 8066, + [Description("Head zone 9 heat up")] + HeaterHeadZone9 = 8066, /// - /// () + /// (Head zone 10 heat up) /// - [Description("")] - HeaterHead10 = 8067, + [Description("Head zone 10 heat up")] + HeaterHeadZone10 = 8067, /// - /// () + /// (Head zone 11 heat up) /// - [Description("")] - HeaterHead11 = 8068, + [Description("Head zone 11 heat up")] + HeaterHeadZone11 = 8068, /// - /// () + /// (Head zone 12 heat up) /// - [Description("")] - HeaterHead12 = 8069, + [Description("Head zone 12 heat up")] + HeaterHeadZone12 = 8069, /// - /// () + /// (Head right blower heat up) /// - [Description("")] + [Description("Head right blower heat up")] HeaterHeadBlowerIn = 8070, /// - /// () + /// (Head left blower heat up) /// - [Description("")] + [Description("Head left blower heat up")] HeaterHeadBlowerOut = 8071, /// - /// () + /// (Communication with head cleaning motor driver) /// - [Description("")] + [Description("Communication with head cleaning motor driver")] PowerstepDhCleanHead = 9000, /// - /// () + /// (Communication with head cleaning mechanism motor driver) /// - [Description("")] + [Description("Communication with head cleaning mechanism motor driver")] PowerstepDhCleanMech = 9001, /// - /// () + /// (Communication with head lid motor driver) /// - [Description("")] + [Description("Communication with head lid motor driver")] PowerstepDyeingHeadLid = 9002, /// - /// () + /// (Communication with dryer driving motor driver) /// - [Description("")] + [Description("Communication with dryer driving motor driver")] PowerstepDryerDriving = 9003, /// - /// () + /// (Communication with dryer lid motor driver) /// - [Description("")] + [Description("Communication with dryer lid motor driver")] PowerstepDryerLid = 9004, /// - /// () + /// (Communication with dryer loading arm motor driver) /// - [Description("")] + [Description("Communication with dryer loading arm motor driver")] PowerstepDryerLoadarm = 9005, /// - /// () + /// (Communication with black dispenser motor driver) /// - [Description("")] - PowerstepDispenser1 = 9006, + [Description("Communication with black dispenser motor driver")] + PowerstepDispenserK = 9006, /// - /// () + /// (Communication with cyan dispenser motor driver) /// - [Description("")] - PowerstepDispenser2 = 9007, + [Description("Communication with cyan dispenser motor driver")] + PowerstepDispenserC = 9007, /// - /// () + /// (Communication with magenta dispenser motor driver) /// - [Description("")] - PowerstepDispenser3 = 9008, + [Description("Communication with magenta dispenser motor driver")] + PowerstepDispenserM = 9008, /// - /// () + /// (Communication with yellow dispenser motor driver) /// - [Description("")] - PowerstepDispenser4 = 9009, + [Description("Communication with yellow dispenser motor driver")] + PowerstepDispenserY = 9009, /// - /// () + /// (Communication with transparent ink dispenser motor driver) /// - [Description("")] - PowerstepDispenser5 = 9010, + [Description("Communication with transparent ink dispenser motor driver")] + PowerstepDispenserTI = 9010, /// - /// () + /// (Communication with light cyan dispenser motor driver) /// - [Description("")] - PowerstepDispenser6 = 9011, + [Description("Communication with light cyan dispenser motor driver")] + PowerstepDispenserLC = 9011, /// - /// () + /// (Communication with light magenta dispenser motor driver) /// - [Description("")] - PowerstepDispenser7 = 9012, + [Description("Communication with light magenta dispenser motor driver")] + PowerstepDispenserLM = 9012, /// - /// () + /// (Communication with light yellow dispenser motor driver) /// - [Description("")] - PowerstepDispenser8 = 9013, + [Description("Communication with light yellow dispenser motor driver")] + PowerstepDispenserLY = 9013, /// - /// () + /// (Communication with screw motor driver) /// - [Description("")] + [Description("Communication with screw motor driver")] PowerstepScrew = 9014, /// - /// () + /// (Communication with winder motor driver) /// - [Description("")] + [Description("Communication with winder motor driver")] PowerstepWinder = 9015, /// - /// () + /// (Communication with winder dancer motor driver) /// - [Description("")] + [Description("Communication with winder dancer motor driver")] PowerstepLeftDancer = 9016, /// - /// () + /// (Communication with puller dancer motor driver) /// - [Description("")] + [Description("Communication with puller dancer motor driver")] PowerstepMiddleDancer = 9017, /// - /// () + /// (Communication with lubricant pump motor driver) /// - [Description("")] + [Description("Communication with lubricant pump motor driver")] PowerstepLeftDriving = 9018, /// - /// () + /// (Communication with left rockers motor driver) /// - [Description("")] + [Description("Communication with left rockers motor driver")] PowerstepLeftRockers = 9019, /// - /// () + /// (Communication with left pivot motor driver) /// - [Description("")] + [Description("Communication with left pivot motor driver")] PowerstepLeftPivot = 9020, /// - /// () + /// (Communication with feeder dancer motor driver) /// - [Description("")] + [Description("Communication with feeder dancer motor driver")] PowerstepRightDancer = 9021, /// - /// () + /// (Communication with right driving motor driver) /// - [Description("")] + [Description("Communication with right driving motor driver")] PowerstepRightDriving = 9022, /// - /// () + /// (Communication with right loadarm motor driver) /// - [Description("")] + [Description("Communication with right loadarm motor driver")] PowerstepRightLoadarm = 9023, /// - /// () + /// (Communication with cleaner motor driver) /// - [Description("")] + [Description("Communication with cleaner motor driver")] PowerstepRightRockers = 9024, /// - /// () + /// (Communication with spare motor driver) /// - [Description("")] + [Description("Communication with spare motor driver")] PowerstepSpare1_1 = 9025, /// - /// () + /// (Communication with spare motor driver) /// - [Description("")] + [Description("Communication with spare motor driver")] PowerstepSpare1_2 = 9026, /// - /// () + /// (Communication with spare motor driver) /// - [Description("")] + [Description("Communication with spare motor driver")] PowerstepSpare2_1 = 9027, /// - /// () + /// (Communication with spare motor driver) /// - [Description("")] + [Description("Communication with spare motor driver")] PowerstepSpare2_2 = 9028, /// - /// () + /// (Communication with spare motor driver) /// - [Description("")] + [Description("Communication with spare motor driver")] PowerstepSpare3_1 = 9029, /// - /// () + /// (Head cleaning motor function) /// - [Description("")] + [Description("Head cleaning motor function")] MotorWireReadDhCleanHead = 9030, /// - /// () + /// (Head cleaning mechanism motor function) /// - [Description("")] + [Description("Head cleaning mechanism motor function")] MotorWireReadDhCleanMech = 9031, /// - /// () + /// (Head lid motor function) /// - [Description("")] + [Description("Head lid motor function")] MotorWireReadDyeingHeadLid = 9032, /// - /// () + /// (Dryer driving motor mechanism function) /// - [Description("")] + [Description("Dryer driving motor mechanism function")] MotorWireReadDryerDriving = 9033, /// - /// () + /// (Dryer lid motor function) /// - [Description("")] + [Description("Dryer lid motor function")] MotorWireReadDryerLid = 9034, /// - /// () + /// (Dryer loading arm motor function) /// - [Description("")] + [Description("Dryer loading arm motor function")] MotorWireReadDryerLoadarm = 9035, /// - /// () + /// (Black dispenser motor function) /// - [Description("")] - MotorWireReadDispenser1 = 9036, + [Description("Black dispenser motor function")] + MotorWireReadDispenserK = 9036, /// - /// () + /// (Cyan dispesner motor function) /// - [Description("")] - MotorWireReadDispenser2 = 9037, + [Description("Cyan dispesner motor function")] + MotorWireReadDispenserC = 9037, /// - /// () + /// (Magenta dispenser motor function) /// - [Description("")] - MotorWireReadDispenser3 = 9038, + [Description("Magenta dispenser motor function")] + MotorWireReadDispenserM = 9038, /// - /// () + /// (Yellow dispenser motor function) /// - [Description("")] - MotorWireReadDispenser4 = 9039, + [Description("Yellow dispenser motor function")] + MotorWireReadDispenserY = 9039, /// - /// () + /// (Tranparent ink dispenser motor function) /// - [Description("")] - MotorWireReadDispenser5 = 9040, + [Description("Tranparent ink dispenser motor function")] + MotorWireReadDispenserTI = 9040, /// - /// () + /// (Light cyan dispenser motor function) /// - [Description("")] - MotorWireReadDispenser6 = 9041, + [Description("Light cyan dispenser motor function")] + MotorWireReadDispenserLC = 9041, /// - /// () + /// (Light magenta dispenser motor function) /// - [Description("")] - MotorWireReadDispenser7 = 9042, + [Description("Light magenta dispenser motor function")] + MotorWireReadDispenserLM = 9042, /// - /// () + /// (Light yellow dispenser motor function) /// - [Description("")] - MotorWireReadDispenser8 = 9043, + [Description("Light yellow dispenser motor function")] + MotorWireReadDispenserLY = 9043, /// - /// () + /// (Screw motor function) /// - [Description("")] + [Description("Screw motor function")] MotorWireReadScrew = 9044, /// - /// () + /// (Winder motor function) /// - [Description("")] + [Description("Winder motor function")] MotorWireReadWinder = 9045, /// - /// () + /// (Winder dancer motor function) /// - [Description("")] + [Description("Winder dancer motor function")] MotorWireReadLeftDancer = 9046, /// - /// () + /// (Puller dancer motor function) /// - [Description("")] + [Description("Puller dancer motor function")] MotorWireReadMiddleDancer = 9047, /// - /// () + /// (Lubricant pump motor function) /// - [Description("")] + [Description("Lubricant pump motor function")] MotorWireReadLeftDriving = 9048, /// - /// () + /// (Left rockers motor function) /// - [Description("")] + [Description("Left rockers motor function")] MotorWireReadLeftRockers = 9049, /// - /// () + /// (Left pivot motors function) /// - [Description("")] + [Description("Left pivot motors function")] MotorWireReadLeftPivot = 9050, /// - /// () + /// (Feeder dancer motor function) /// - [Description("")] + [Description("Feeder dancer motor function")] MotorWireReadRightDancer = 9051, /// - /// () + /// (Right driving motor function) /// - [Description("")] + [Description("Right driving motor function")] MotorWireReadRightDriving = 9052, /// - /// () + /// (Right load arm motor function) /// - [Description("")] + [Description("Right load arm motor function")] MotorWireReadRightLoadarm = 9053, /// - /// () + /// (Cleaner motor function) /// - [Description("")] + [Description("Cleaner motor function")] MotorWireReadRightRockers = 9054, /// - /// () + /// (Spare motor function) /// - [Description("")] + [Description("Spare motor function")] MotorWireReadSpare1_1 = 9055, /// - /// () + /// (Spare motor function) /// - [Description("")] + [Description("Spare motor function")] MotorWireReadSpare1_2 = 9056, /// - /// () + /// (Spare motor function) /// - [Description("")] + [Description("Spare motor function")] MotorWireReadSpare2_1 = 9057, /// - /// () + /// (Spare motor function) /// - [Description("")] + [Description("Spare motor function")] MotorWireReadSpare2_2 = 9058, /// - /// () + /// (Spare motor function) /// - [Description("")] + [Description("Spare motor function")] MotorWireReadSpare3_1 = 9059, /// - /// () + /// (Head right blower turn off) /// - [Description("")] + [Description("Head right blower turn off")] InBlowerTurnOff = 10000, /// - /// () + /// (Head left blower turn off) /// - [Description("")] + [Description("Head left blower turn off")] OutBlowerTurnOff = 10001, /// - /// () + /// (Head right blower turn on) /// - [Description("")] + [Description("Head right blower turn on")] InBlowerTurnOn = 10002, /// - /// () + /// (Head left blower turn on) /// - [Description("")] + [Description("Head left blower turn on")] OutBlowerTurnOn = 10003, /// - /// () + /// (Read head right blower fan RPM) /// - [Description("")] + [Description("Read head right blower fan RPM")] InBlowerPressure = 10004, /// - /// () + /// (Read head left blower fan RPM) /// - [Description("")] + [Description("Read head left blower fan RPM")] OutBlowerPressure = 10005, /// - /// () + /// (WHS blower function) /// - [Description("")] + [Description("WHS blower function")] WHSBlowerDoesNotBuildPressure = 10006, /// - /// () + /// (Read WHS dryer flow) /// - [Description("")] + [Description("Read WHS dryer flow")] WHSDryerSensorFailure = 10007, /// - /// () + /// (Read WHS head flow) /// - [Description("")] + [Description("Read WHS head flow")] WHSHeadSensorFailure = 10008, /// - /// () + /// (Read WHS others flow) /// - [Description("")] + [Description("Read WHS others flow")] WHSOtherSensorFailure = 10009, /// - /// () + /// (Black dispenser pressure build up) /// - [Description("")] - PressureBuildingUp1 = 11000, + [Description("Black dispenser pressure build up")] + PressureBuildingUpK = 11000, /// - /// () + /// (Cyan dispenser pressure build up) /// - [Description("")] - PressureBuildingUp2 = 11001, + [Description("Cyan dispenser pressure build up")] + PressureBuildingUpC = 11001, /// - /// () + /// (Magenta dispenser pressure build up) /// - [Description("")] - PressureBuildingUp3 = 11002, + [Description("Magenta dispenser pressure build up")] + PressureBuildingUpM = 11002, /// - /// () + /// (Yellow dispenser pressure build up) /// - [Description("")] - PressureBuildingUp4 = 11003, + [Description("Yellow dispenser pressure build up")] + PressureBuildingUpY = 11003, /// - /// () + /// (Transparent ink dispenser pressure build up) /// - [Description("")] - PressureBuildingUp5 = 11004, + [Description("Transparent ink dispenser pressure build up")] + PressureBuildingUpTI = 11004, /// - /// () + /// (Light cyan dispenser pressure build up) /// - [Description("")] - PressureBuildingUp6 = 11005, + [Description("Light cyan dispenser pressure build up")] + PressureBuildingUpLC = 11005, /// - /// () + /// (Light magenta dispenser pressure up) /// - [Description("")] - PressureBuildingUp7 = 11006, + [Description("Light magenta dispenser pressure up")] + PressureBuildingUpLM = 11006, /// - /// () + /// (Light yellow dispenser pressure build up) /// - [Description("")] - PressureBuildingUp8 = 11007, + [Description("Light yellow dispenser pressure build up")] + PressureBuildingUpLY = 11007, /// - /// () + /// (Black dispenser pressure release ) /// - [Description("")] - PressureReleased1 = 11008, + [Description("Black dispenser pressure release ")] + PressureReleasedK = 11008, /// - /// () + /// (Cyan dispenser pressure release ) /// - [Description("")] - PressureReleased2 = 11009, + [Description("Cyan dispenser pressure release ")] + PressureReleasedC = 11009, /// - /// () + /// (Magenta dispenser pressure release) /// - [Description("")] - PressureReleased3 = 11010, + [Description("Magenta dispenser pressure release")] + PressureReleasedM = 11010, /// - /// () + /// (Yellow dispenser pressure release) /// - [Description("")] - PressureReleased4 = 11011, + [Description("Yellow dispenser pressure release")] + PressureReleasedY = 11011, /// - /// () + /// (Transparent ink dispenser pressure release) /// - [Description("")] - PressureReleased5 = 11012, + [Description("Transparent ink dispenser pressure release")] + PressureReleasedTI = 11012, /// - /// () + /// (Light cyan dispenser pressure release) /// - [Description("")] - PressureReleased6 = 11013, + [Description("Light cyan dispenser pressure release")] + PressureReleasedLC = 11013, /// - /// () + /// (Light magenta dispenser pressure release) /// - [Description("")] - PressureReleased7 = 11014, + [Description("Light magenta dispenser pressure release")] + PressureReleasedLM = 11014, /// - /// () + /// (Light yellow dispenser pressure release) /// - [Description("")] - PressureReleased8 = 11015, + [Description("Light yellow dispenser pressure release")] + PressureReleasedLY = 11015, } } diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/FiberShapes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/FiberShapes.cs index 5580a9aeb..f62e2e4c2 100644 --- a/Software/Visual_Studio/Tango.BL/Enumerations/FiberShapes.cs +++ b/Software/Visual_Studio/Tango.BL/Enumerations/FiberShapes.cs @@ -19,47 +19,11 @@ namespace Tango.BL.Enumerations public enum FiberShapes { - /// - /// (Trilobal) - /// - [Description("Trilobal")] - Trilobal = 3, - /// /// (Triangle) /// [Description("Triangle")] Triangle = 1, - /// - /// (Hollow) - /// - [Description("Hollow")] - Hollow = 4, - - /// - /// (Irregular) - /// - [Description("Irregular")] - Irregular = 5, - - /// - /// (Pentagona) - /// - [Description("Pentagona")] - Pentagona = 6, - - /// - /// (Round) - /// - [Description("Round")] - Round = 2, - - /// - /// (Unknown) - /// - [Description("Unknown")] - Unknown = 7, - } } diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/InkUptakeZoneTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/InkUptakeZoneTypes.cs new file mode 100644 index 000000000..73d468078 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/Enumerations/InkUptakeZoneTypes.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.BL.Enumerations +{ + public enum InkUptakeZoneTypes + { + [Description("Min ink uptake - Zone1")] + MININKUPTAKEZONE1 = 0, + [Description("Max ink uptake - Zone1")] + MAXINKUPTAKEZONE1 = 1, + [Description("Min ink uptake - Zone2")] + MININKUPTAKEZONE2 = 2, + [Description("Max ink uptake - Zone2")] + MAXINKUPTAKEZONE2 = 3, + } +} diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/LinearMassDensityUnits.cs b/Software/Visual_Studio/Tango.BL/Enumerations/LinearMassDensityUnits.cs index 8b04792b7..1a2478a9d 100644 --- a/Software/Visual_Studio/Tango.BL/Enumerations/LinearMassDensityUnits.cs +++ b/Software/Visual_Studio/Tango.BL/Enumerations/LinearMassDensityUnits.cs @@ -19,12 +19,6 @@ namespace Tango.BL.Enumerations public enum LinearMassDensityUnits { - /// - /// (Denier) - /// - [Description("Denier")] - Denier = 5, - /// /// (Nm) /// diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/MediaPurposes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/MediaPurposes.cs index 1d5ea3533..b76cc6f4e 100644 --- a/Software/Visual_Studio/Tango.BL/Enumerations/MediaPurposes.cs +++ b/Software/Visual_Studio/Tango.BL/Enumerations/MediaPurposes.cs @@ -61,5 +61,11 @@ namespace Tango.BL.Enumerations [Description("Circular Knitting")] CircularKnitting = 5, + /// + /// (Twine) + /// + [Description("Twine")] + Twine = 0, + } } diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/Rmls.cs b/Software/Visual_Studio/Tango.BL/Enumerations/Rmls.cs index 6e2bfa3e7..4cca09917 100644 --- a/Software/Visual_Studio/Tango.BL/Enumerations/Rmls.cs +++ b/Software/Visual_Studio/Tango.BL/Enumerations/Rmls.cs @@ -37,6 +37,12 @@ namespace Tango.BL.Enumerations [Description("RML 2")] RML2 = 0, + /// + /// (vica_test) + /// + [Description("vica_test")] + vica_test = 3, + /// /// (RML 1) /// diff --git a/Software/Visual_Studio/Tango.BL/ObservablesContext.cs b/Software/Visual_Studio/Tango.BL/ObservablesContext.cs index d6bc73bd0..ffd2ca1dc 100644 --- a/Software/Visual_Studio/Tango.BL/ObservablesContext.cs +++ b/Software/Visual_Studio/Tango.BL/ObservablesContext.cs @@ -30,6 +30,150 @@ namespace Tango.BL get; set; } + /// + /// Gets or sets the ColorProcessData. + /// + public DbSet ColorProcessData + { + get; set; + } + + /// + /// Gets or sets the ColorProcessFactors. + /// + public DbSet ColorProcessFactors + { + get; set; + } + + /// + /// Gets or sets the ColorProcessParameters. + /// + public DbSet ColorProcessParameters + { + get; set; + } + + /// + /// Gets or sets the RmlExtensionTestResults. + /// + public DbSet RmlExtensionTestResults + { + get; set; + } + + /// + /// Gets or sets the RmlsExtensions. + /// + public DbSet RmlsExtensions + { + get; set; + } + + /// + /// Gets or sets the RubbingResults. + /// + public DbSet RubbingResults + { + get; set; + } + + /// + /// Gets or sets the TensileResults. + /// + public DbSet TensileResults + { + get; set; + } + + /// + /// Gets or sets the YarnApplications. + /// + public DbSet YarnApplications + { + get; set; + } + + /// + /// Gets or sets the YarnBrands. + /// + public DbSet YarnBrands + { + get; set; + } + + /// + /// Gets or sets the YarnFamilies. + /// + public DbSet YarnFamilies + { + get; set; + } + + /// + /// Gets or sets the YarnGlossLevels. + /// + public DbSet YarnGlossLevels + { + get; set; + } + + /// + /// Gets or sets the YarnGroups. + /// + public DbSet YarnGroups + { + get; set; + } + + /// + /// Gets or sets the YarnIndustrysectors. + /// + public DbSet YarnIndustrysectors + { + get; set; + } + + /// + /// Gets or sets the YarnManufacturers. + /// + public DbSet YarnManufacturers + { + get; set; + } + + /// + /// Gets or sets the YarnSubFamilies. + /// + public DbSet YarnSubFamilies + { + get; set; + } + + /// + /// Gets or sets the YarnTexturings. + /// + public DbSet YarnTexturings + { + get; set; + } + + /// + /// Gets or sets the YarnTypes. + /// + public DbSet YarnTypes + { + get; set; + } + + /// + /// Gets or sets the YarnWhiteShades. + /// + public DbSet YarnWhiteShades + { + get; set; + } + /// /// Gets or sets the ActionLogs. /// @@ -159,25 +303,9 @@ namespace Tango.BL } /// - /// Gets or sets the ColorProcessData. - /// - public DbSet ColorProcessData - { - get; set; - } - - /// - /// Gets or sets the ColorProcessFactors. - /// - public DbSet ColorProcessFactors - { - get; set; - } - - /// - /// Gets or sets the ColorProcessParameters. + /// Gets or sets the ColorProcessInkUptake. /// - public DbSet ColorProcessParameters + public DbSet ColorProcessInkUptake { get; set; } @@ -582,14 +710,6 @@ namespace Tango.BL get; set; } - /// - /// Gets or sets the RmlExtensionTestResults. - /// - public DbSet RmlExtensionTestResults - { - get; set; - } - /// /// Gets or sets the Rmls. /// @@ -598,14 +718,6 @@ namespace Tango.BL get; set; } - /// - /// Gets or sets the RmlsExtensions. - /// - public DbSet RmlsExtensions - { - get; set; - } - /// /// Gets or sets the RmlsSpools. /// @@ -630,14 +742,6 @@ namespace Tango.BL get; set; } - /// - /// Gets or sets the RubbingResults. - /// - public DbSet RubbingResults - { - get; set; - } - /// /// Gets or sets the Segments. /// @@ -758,14 +862,6 @@ namespace Tango.BL get; set; } - /// - /// Gets or sets the TensileResults. - /// - public DbSet TensileResults - { - get; set; - } - /// /// Gets or sets the Users. /// @@ -790,93 +886,5 @@ namespace Tango.BL get; set; } - /// - /// Gets or sets the YarnApplications. - /// - public DbSet YarnApplications - { - get; set; - } - - /// - /// Gets or sets the YarnBrands. - /// - public DbSet YarnBrands - { - get; set; - } - - /// - /// Gets or sets the YarnFamilies. - /// - public DbSet YarnFamilies - { - get; set; - } - - /// - /// Gets or sets the YarnGlossLevels. - /// - public DbSet YarnGlossLevels - { - get; set; - } - - /// - /// Gets or sets the YarnGroups. - /// - public DbSet YarnGroups - { - get; set; - } - - /// - /// Gets or sets the YarnIndustrysectors. - /// - public DbSet YarnIndustrysectors - { - get; set; - } - - /// - /// Gets or sets the YarnManufacturers. - /// - public DbSet YarnManufacturers - { - get; set; - } - - /// - /// Gets or sets the YarnSubFamilies. - /// - public DbSet YarnSubFamilies - { - get; set; - } - - /// - /// Gets or sets the YarnTexturings. - /// - public DbSet YarnTexturings - { - get; set; - } - - /// - /// Gets or sets the YarnTypes. - /// - public DbSet YarnTypes - { - get; set; - } - - /// - /// Gets or sets the YarnWhiteShades. - /// - public DbSet YarnWhiteShades - { - get; set; - } - } } diff --git a/Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs b/Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs index ac276916f..052aae575 100644 --- a/Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs +++ b/Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs @@ -53,3818 +53,3854 @@ namespace Tango.BL } - private ObservableCollection _actionlogs; + private ObservableCollection _colorprocessdata; /// - /// Gets or sets the ActionLogs. + /// Gets or sets the ColorProcessData. /// - public ObservableCollection ActionLogs + public ObservableCollection ColorProcessData { get { - return _actionlogs; + return _colorprocessdata; } set { - _actionlogs = value; RaisePropertyChanged(nameof(ActionLogs)); + _colorprocessdata = value; RaisePropertyChanged(nameof(ColorProcessData)); } } - private ICollectionView _actionlogsViewSource; + private ICollectionView _colorprocessdataViewSource; /// - /// Gets or sets the ActionLogs View Source. + /// Gets or sets the ColorProcessData View Source. /// - public ICollectionView ActionLogsViewSource + public ICollectionView ColorProcessDataViewSource { get { - return _actionlogsViewSource; + return _colorprocessdataViewSource; } set { - _actionlogsViewSource = value; RaisePropertyChanged(nameof(ActionLogsViewSource)); + _colorprocessdataViewSource = value; RaisePropertyChanged(nameof(ColorProcessDataViewSource)); } } - private ObservableCollection
_addresses; + private ObservableCollection _colorprocessfactors; /// - /// Gets or sets the Addresses. + /// Gets or sets the ColorProcessFactors. /// - public ObservableCollection
Addresses + public ObservableCollection ColorProcessFactors { get { - return _addresses; + return _colorprocessfactors; } set { - _addresses = value; RaisePropertyChanged(nameof(Addresses)); + _colorprocessfactors = value; RaisePropertyChanged(nameof(ColorProcessFactors)); } } - private ICollectionView _addressesViewSource; + private ICollectionView _colorprocessfactorsViewSource; /// - /// Gets or sets the Addresses View Source. + /// Gets or sets the ColorProcessFactors View Source. /// - public ICollectionView AddressesViewSource + public ICollectionView ColorProcessFactorsViewSource { get { - return _addressesViewSource; + return _colorprocessfactorsViewSource; } set { - _addressesViewSource = value; RaisePropertyChanged(nameof(AddressesViewSource)); + _colorprocessfactorsViewSource = value; RaisePropertyChanged(nameof(ColorProcessFactorsViewSource)); } } - private ObservableCollection _applicationdisplaypanelversions; + private ObservableCollection _colorprocessparameters; /// - /// Gets or sets the ApplicationDisplayPanelVersions. + /// Gets or sets the ColorProcessParameters. /// - public ObservableCollection ApplicationDisplayPanelVersions + public ObservableCollection ColorProcessParameters { get { - return _applicationdisplaypanelversions; + return _colorprocessparameters; } set { - _applicationdisplaypanelversions = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersions)); + _colorprocessparameters = value; RaisePropertyChanged(nameof(ColorProcessParameters)); } } - private ICollectionView _applicationdisplaypanelversionsViewSource; + private ICollectionView _colorprocessparametersViewSource; /// - /// Gets or sets the ApplicationDisplayPanelVersions View Source. + /// Gets or sets the ColorProcessParameters View Source. /// - public ICollectionView ApplicationDisplayPanelVersionsViewSource + public ICollectionView ColorProcessParametersViewSource { get { - return _applicationdisplaypanelversionsViewSource; + return _colorprocessparametersViewSource; } set { - _applicationdisplaypanelversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersionsViewSource)); + _colorprocessparametersViewSource = value; RaisePropertyChanged(nameof(ColorProcessParametersViewSource)); } } - private ObservableCollection _applicationfirmwareversions; + private ObservableCollection _rmlextensiontestresults; /// - /// Gets or sets the ApplicationFirmwareVersions. + /// Gets or sets the RmlExtensionTestResults. /// - public ObservableCollection ApplicationFirmwareVersions + public ObservableCollection RmlExtensionTestResults { get { - return _applicationfirmwareversions; + return _rmlextensiontestresults; } set { - _applicationfirmwareversions = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersions)); + _rmlextensiontestresults = value; RaisePropertyChanged(nameof(RmlExtensionTestResults)); } } - private ICollectionView _applicationfirmwareversionsViewSource; + private ICollectionView _rmlextensiontestresultsViewSource; /// - /// Gets or sets the ApplicationFirmwareVersions View Source. + /// Gets or sets the RmlExtensionTestResults View Source. /// - public ICollectionView ApplicationFirmwareVersionsViewSource + public ICollectionView RmlExtensionTestResultsViewSource { get { - return _applicationfirmwareversionsViewSource; + return _rmlextensiontestresultsViewSource; } set { - _applicationfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersionsViewSource)); + _rmlextensiontestresultsViewSource = value; RaisePropertyChanged(nameof(RmlExtensionTestResultsViewSource)); } } - private ObservableCollection _applicationosversions; + private ObservableCollection _rmlsextensions; /// - /// Gets or sets the ApplicationOsVersions. + /// Gets or sets the RmlsExtensions. /// - public ObservableCollection ApplicationOsVersions + public ObservableCollection RmlsExtensions { get { - return _applicationosversions; + return _rmlsextensions; } set { - _applicationosversions = value; RaisePropertyChanged(nameof(ApplicationOsVersions)); + _rmlsextensions = value; RaisePropertyChanged(nameof(RmlsExtensions)); } } - private ICollectionView _applicationosversionsViewSource; + private ICollectionView _rmlsextensionsViewSource; /// - /// Gets or sets the ApplicationOsVersions View Source. + /// Gets or sets the RmlsExtensions View Source. /// - public ICollectionView ApplicationOsVersionsViewSource + public ICollectionView RmlsExtensionsViewSource { get { - return _applicationosversionsViewSource; + return _rmlsextensionsViewSource; } set { - _applicationosversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationOsVersionsViewSource)); + _rmlsextensionsViewSource = value; RaisePropertyChanged(nameof(RmlsExtensionsViewSource)); } } - private ObservableCollection _bittypes; + private ObservableCollection _rubbingresults; /// - /// Gets or sets the BitTypes. + /// Gets or sets the RubbingResults. /// - public ObservableCollection BitTypes + public ObservableCollection RubbingResults { get { - return _bittypes; + return _rubbingresults; } set { - _bittypes = value; RaisePropertyChanged(nameof(BitTypes)); + _rubbingresults = value; RaisePropertyChanged(nameof(RubbingResults)); } } - private ICollectionView _bittypesViewSource; + private ICollectionView _rubbingresultsViewSource; /// - /// Gets or sets the BitTypes View Source. + /// Gets or sets the RubbingResults View Source. /// - public ICollectionView BitTypesViewSource + public ICollectionView RubbingResultsViewSource { get { - return _bittypesViewSource; + return _rubbingresultsViewSource; } set { - _bittypesViewSource = value; RaisePropertyChanged(nameof(BitTypesViewSource)); + _rubbingresultsViewSource = value; RaisePropertyChanged(nameof(RubbingResultsViewSource)); } } - private ObservableCollection _brushstops; + private ObservableCollection _tensileresults; /// - /// Gets or sets the BrushStops. + /// Gets or sets the TensileResults. /// - public ObservableCollection BrushStops + public ObservableCollection TensileResults { get { - return _brushstops; + return _tensileresults; } set { - _brushstops = value; RaisePropertyChanged(nameof(BrushStops)); + _tensileresults = value; RaisePropertyChanged(nameof(TensileResults)); } } - private ICollectionView _brushstopsViewSource; + private ICollectionView _tensileresultsViewSource; /// - /// Gets or sets the BrushStops View Source. + /// Gets or sets the TensileResults View Source. /// - public ICollectionView BrushStopsViewSource + public ICollectionView TensileResultsViewSource { get { - return _brushstopsViewSource; + return _tensileresultsViewSource; } set { - _brushstopsViewSource = value; RaisePropertyChanged(nameof(BrushStopsViewSource)); + _tensileresultsViewSource = value; RaisePropertyChanged(nameof(TensileResultsViewSource)); } } - private ObservableCollection _btsrapplicationtypes; + private ObservableCollection _yarnapplications; /// - /// Gets or sets the BtsrApplicationTypes. + /// Gets or sets the YarnApplications. /// - public ObservableCollection BtsrApplicationTypes + public ObservableCollection YarnApplications { get { - return _btsrapplicationtypes; + return _yarnapplications; } set { - _btsrapplicationtypes = value; RaisePropertyChanged(nameof(BtsrApplicationTypes)); + _yarnapplications = value; RaisePropertyChanged(nameof(YarnApplications)); } } - private ICollectionView _btsrapplicationtypesViewSource; + private ICollectionView _yarnapplicationsViewSource; /// - /// Gets or sets the BtsrApplicationTypes View Source. + /// Gets or sets the YarnApplications View Source. /// - public ICollectionView BtsrApplicationTypesViewSource + public ICollectionView YarnApplicationsViewSource { get { - return _btsrapplicationtypesViewSource; + return _yarnapplicationsViewSource; } set { - _btsrapplicationtypesViewSource = value; RaisePropertyChanged(nameof(BtsrApplicationTypesViewSource)); + _yarnapplicationsViewSource = value; RaisePropertyChanged(nameof(YarnApplicationsViewSource)); } } - private ObservableCollection _btsryarntypes; + private ObservableCollection _yarnbrands; /// - /// Gets or sets the BtsrYarnTypes. + /// Gets or sets the YarnBrands. /// - public ObservableCollection BtsrYarnTypes + public ObservableCollection YarnBrands { get { - return _btsryarntypes; + return _yarnbrands; } set { - _btsryarntypes = value; RaisePropertyChanged(nameof(BtsrYarnTypes)); + _yarnbrands = value; RaisePropertyChanged(nameof(YarnBrands)); } } - private ICollectionView _btsryarntypesViewSource; + private ICollectionView _yarnbrandsViewSource; /// - /// Gets or sets the BtsrYarnTypes View Source. + /// Gets or sets the YarnBrands View Source. /// - public ICollectionView BtsrYarnTypesViewSource + public ICollectionView YarnBrandsViewSource { get { - return _btsryarntypesViewSource; + return _yarnbrandsViewSource; } set { - _btsryarntypesViewSource = value; RaisePropertyChanged(nameof(BtsrYarnTypesViewSource)); + _yarnbrandsViewSource = value; RaisePropertyChanged(nameof(YarnBrandsViewSource)); } } - private ObservableCollection _cartridgetypes; + private ObservableCollection _yarnfamilies; /// - /// Gets or sets the CartridgeTypes. + /// Gets or sets the YarnFamilies. /// - public ObservableCollection CartridgeTypes + public ObservableCollection YarnFamilies { get { - return _cartridgetypes; + return _yarnfamilies; } set { - _cartridgetypes = value; RaisePropertyChanged(nameof(CartridgeTypes)); + _yarnfamilies = value; RaisePropertyChanged(nameof(YarnFamilies)); } } - private ICollectionView _cartridgetypesViewSource; + private ICollectionView _yarnfamiliesViewSource; /// - /// Gets or sets the CartridgeTypes View Source. + /// Gets or sets the YarnFamilies View Source. /// - public ICollectionView CartridgeTypesViewSource + public ICollectionView YarnFamiliesViewSource { get { - return _cartridgetypesViewSource; + return _yarnfamiliesViewSource; } set { - _cartridgetypesViewSource = value; RaisePropertyChanged(nameof(CartridgeTypesViewSource)); + _yarnfamiliesViewSource = value; RaisePropertyChanged(nameof(YarnFamiliesViewSource)); } } - private ObservableCollection _cats; + private ObservableCollection _yarnglosslevels; /// - /// Gets or sets the Cats. + /// Gets or sets the YarnGlossLevels. /// - public ObservableCollection Cats + public ObservableCollection YarnGlossLevels { get { - return _cats; + return _yarnglosslevels; } set { - _cats = value; RaisePropertyChanged(nameof(Cats)); + _yarnglosslevels = value; RaisePropertyChanged(nameof(YarnGlossLevels)); } } - private ICollectionView _catsViewSource; + private ICollectionView _yarnglosslevelsViewSource; /// - /// Gets or sets the Cats View Source. + /// Gets or sets the YarnGlossLevels View Source. /// - public ICollectionView CatsViewSource + public ICollectionView YarnGlossLevelsViewSource { get { - return _catsViewSource; + return _yarnglosslevelsViewSource; } set { - _catsViewSource = value; RaisePropertyChanged(nameof(CatsViewSource)); + _yarnglosslevelsViewSource = value; RaisePropertyChanged(nameof(YarnGlossLevelsViewSource)); } } - private ObservableCollection _ccts; + private ObservableCollection _yarngroups; /// - /// Gets or sets the Ccts. + /// Gets or sets the YarnGroups. /// - public ObservableCollection Ccts + public ObservableCollection YarnGroups { get { - return _ccts; + return _yarngroups; } set { - _ccts = value; RaisePropertyChanged(nameof(Ccts)); + _yarngroups = value; RaisePropertyChanged(nameof(YarnGroups)); } } - private ICollectionView _cctsViewSource; + private ICollectionView _yarngroupsViewSource; /// - /// Gets or sets the Ccts View Source. + /// Gets or sets the YarnGroups View Source. /// - public ICollectionView CctsViewSource + public ICollectionView YarnGroupsViewSource { get { - return _cctsViewSource; + return _yarngroupsViewSource; } set { - _cctsViewSource = value; RaisePropertyChanged(nameof(CctsViewSource)); + _yarngroupsViewSource = value; RaisePropertyChanged(nameof(YarnGroupsViewSource)); } } - private ObservableCollection _colorcatalogs; + private ObservableCollection _yarnindustrysectors; /// - /// Gets or sets the ColorCatalogs. + /// Gets or sets the YarnIndustrysectors. /// - public ObservableCollection ColorCatalogs + public ObservableCollection YarnIndustrysectors { get { - return _colorcatalogs; + return _yarnindustrysectors; } set { - _colorcatalogs = value; RaisePropertyChanged(nameof(ColorCatalogs)); + _yarnindustrysectors = value; RaisePropertyChanged(nameof(YarnIndustrysectors)); } } - private ICollectionView _colorcatalogsViewSource; + private ICollectionView _yarnindustrysectorsViewSource; /// - /// Gets or sets the ColorCatalogs View Source. + /// Gets or sets the YarnIndustrysectors View Source. /// - public ICollectionView ColorCatalogsViewSource + public ICollectionView YarnIndustrysectorsViewSource { get { - return _colorcatalogsViewSource; + return _yarnindustrysectorsViewSource; } set { - _colorcatalogsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsViewSource)); + _yarnindustrysectorsViewSource = value; RaisePropertyChanged(nameof(YarnIndustrysectorsViewSource)); } } - private ObservableCollection _colorcatalogsgroups; + private ObservableCollection _yarnmanufacturers; /// - /// Gets or sets the ColorCatalogsGroups. + /// Gets or sets the YarnManufacturers. /// - public ObservableCollection ColorCatalogsGroups + public ObservableCollection YarnManufacturers { get { - return _colorcatalogsgroups; + return _yarnmanufacturers; } set { - _colorcatalogsgroups = value; RaisePropertyChanged(nameof(ColorCatalogsGroups)); + _yarnmanufacturers = value; RaisePropertyChanged(nameof(YarnManufacturers)); } } - private ICollectionView _colorcatalogsgroupsViewSource; + private ICollectionView _yarnmanufacturersViewSource; /// - /// Gets or sets the ColorCatalogsGroups View Source. + /// Gets or sets the YarnManufacturers View Source. /// - public ICollectionView ColorCatalogsGroupsViewSource + public ICollectionView YarnManufacturersViewSource { get { - return _colorcatalogsgroupsViewSource; + return _yarnmanufacturersViewSource; } set { - _colorcatalogsgroupsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsGroupsViewSource)); + _yarnmanufacturersViewSource = value; RaisePropertyChanged(nameof(YarnManufacturersViewSource)); } } - private ObservableCollection _colorcatalogsitems; + private ObservableCollection _yarnsubfamilies; /// - /// Gets or sets the ColorCatalogsItems. + /// Gets or sets the YarnSubFamilies. /// - public ObservableCollection ColorCatalogsItems + public ObservableCollection YarnSubFamilies { get { - return _colorcatalogsitems; + return _yarnsubfamilies; } set { - _colorcatalogsitems = value; RaisePropertyChanged(nameof(ColorCatalogsItems)); + _yarnsubfamilies = value; RaisePropertyChanged(nameof(YarnSubFamilies)); } } - private ICollectionView _colorcatalogsitemsViewSource; + private ICollectionView _yarnsubfamiliesViewSource; /// - /// Gets or sets the ColorCatalogsItems View Source. + /// Gets or sets the YarnSubFamilies View Source. /// - public ICollectionView ColorCatalogsItemsViewSource + public ICollectionView YarnSubFamiliesViewSource { get { - return _colorcatalogsitemsViewSource; + return _yarnsubfamiliesViewSource; } set { - _colorcatalogsitemsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsViewSource)); + _yarnsubfamiliesViewSource = value; RaisePropertyChanged(nameof(YarnSubFamiliesViewSource)); } } - private ObservableCollection _colorcatalogsitemsrecipes; + private ObservableCollection _yarntexturings; /// - /// Gets or sets the ColorCatalogsItemsRecipes. + /// Gets or sets the YarnTexturings. /// - public ObservableCollection ColorCatalogsItemsRecipes + public ObservableCollection YarnTexturings { get { - return _colorcatalogsitemsrecipes; + return _yarntexturings; } set { - _colorcatalogsitemsrecipes = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipes)); + _yarntexturings = value; RaisePropertyChanged(nameof(YarnTexturings)); } } - private ICollectionView _colorcatalogsitemsrecipesViewSource; + private ICollectionView _yarntexturingsViewSource; /// - /// Gets or sets the ColorCatalogsItemsRecipes View Source. + /// Gets or sets the YarnTexturings View Source. /// - public ICollectionView ColorCatalogsItemsRecipesViewSource + public ICollectionView YarnTexturingsViewSource { get { - return _colorcatalogsitemsrecipesViewSource; + return _yarntexturingsViewSource; } set { - _colorcatalogsitemsrecipesViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipesViewSource)); + _yarntexturingsViewSource = value; RaisePropertyChanged(nameof(YarnTexturingsViewSource)); } } - private ObservableCollection _colorprocessdata; + private ObservableCollection _yarntypes; /// - /// Gets or sets the ColorProcessData. + /// Gets or sets the YarnTypes. /// - public ObservableCollection ColorProcessData + public ObservableCollection YarnTypes { get { - return _colorprocessdata; + return _yarntypes; } set { - _colorprocessdata = value; RaisePropertyChanged(nameof(ColorProcessData)); + _yarntypes = value; RaisePropertyChanged(nameof(YarnTypes)); } } - private ICollectionView _colorprocessdataViewSource; + private ICollectionView _yarntypesViewSource; /// - /// Gets or sets the ColorProcessData View Source. + /// Gets or sets the YarnTypes View Source. /// - public ICollectionView ColorProcessDataViewSource + public ICollectionView YarnTypesViewSource { get { - return _colorprocessdataViewSource; + return _yarntypesViewSource; } set { - _colorprocessdataViewSource = value; RaisePropertyChanged(nameof(ColorProcessDataViewSource)); + _yarntypesViewSource = value; RaisePropertyChanged(nameof(YarnTypesViewSource)); } } - private ObservableCollection _colorprocessfactors; + private ObservableCollection _yarnwhiteshades; /// - /// Gets or sets the ColorProcessFactors. + /// Gets or sets the YarnWhiteShades. /// - public ObservableCollection ColorProcessFactors + public ObservableCollection YarnWhiteShades { get { - return _colorprocessfactors; + return _yarnwhiteshades; } set { - _colorprocessfactors = value; RaisePropertyChanged(nameof(ColorProcessFactors)); + _yarnwhiteshades = value; RaisePropertyChanged(nameof(YarnWhiteShades)); } } - private ICollectionView _colorprocessfactorsViewSource; + private ICollectionView _yarnwhiteshadesViewSource; /// - /// Gets or sets the ColorProcessFactors View Source. + /// Gets or sets the YarnWhiteShades View Source. /// - public ICollectionView ColorProcessFactorsViewSource + public ICollectionView YarnWhiteShadesViewSource { get { - return _colorprocessfactorsViewSource; + return _yarnwhiteshadesViewSource; } set { - _colorprocessfactorsViewSource = value; RaisePropertyChanged(nameof(ColorProcessFactorsViewSource)); + _yarnwhiteshadesViewSource = value; RaisePropertyChanged(nameof(YarnWhiteShadesViewSource)); } } - private ObservableCollection _colorprocessparameters; + private ObservableCollection _actionlogs; /// - /// Gets or sets the ColorProcessParameters. + /// Gets or sets the ActionLogs. /// - public ObservableCollection ColorProcessParameters + public ObservableCollection ActionLogs { get { - return _colorprocessparameters; + return _actionlogs; } set { - _colorprocessparameters = value; RaisePropertyChanged(nameof(ColorProcessParameters)); + _actionlogs = value; RaisePropertyChanged(nameof(ActionLogs)); } } - private ICollectionView _colorprocessparametersViewSource; + private ICollectionView _actionlogsViewSource; /// - /// Gets or sets the ColorProcessParameters View Source. + /// Gets or sets the ActionLogs View Source. /// - public ICollectionView ColorProcessParametersViewSource + public ICollectionView ActionLogsViewSource { get { - return _colorprocessparametersViewSource; + return _actionlogsViewSource; } set { - _colorprocessparametersViewSource = value; RaisePropertyChanged(nameof(ColorProcessParametersViewSource)); + _actionlogsViewSource = value; RaisePropertyChanged(nameof(ActionLogsViewSource)); } } - private ObservableCollection _colorspaces; + private ObservableCollection
_addresses; /// - /// Gets or sets the ColorSpaces. + /// Gets or sets the Addresses. /// - public ObservableCollection ColorSpaces + public ObservableCollection
Addresses { get { - return _colorspaces; + return _addresses; } set { - _colorspaces = value; RaisePropertyChanged(nameof(ColorSpaces)); + _addresses = value; RaisePropertyChanged(nameof(Addresses)); + } + + } + + private ICollectionView _addressesViewSource; + /// + /// Gets or sets the Addresses View Source. + /// + public ICollectionView AddressesViewSource + { + get + { + return _addressesViewSource; + } + + set + { + _addressesViewSource = value; RaisePropertyChanged(nameof(AddressesViewSource)); + } + + } + + private ObservableCollection _applicationdisplaypanelversions; + /// + /// Gets or sets the ApplicationDisplayPanelVersions. + /// + public ObservableCollection ApplicationDisplayPanelVersions + { + get + { + return _applicationdisplaypanelversions; + } + + set + { + _applicationdisplaypanelversions = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersions)); } } - private ICollectionView _colorspacesViewSource; + private ICollectionView _applicationdisplaypanelversionsViewSource; /// - /// Gets or sets the ColorSpaces View Source. + /// Gets or sets the ApplicationDisplayPanelVersions View Source. /// - public ICollectionView ColorSpacesViewSource + public ICollectionView ApplicationDisplayPanelVersionsViewSource { get { - return _colorspacesViewSource; + return _applicationdisplaypanelversionsViewSource; } set { - _colorspacesViewSource = value; RaisePropertyChanged(nameof(ColorSpacesViewSource)); + _applicationdisplaypanelversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersionsViewSource)); } } - private ObservableCollection _configurations; + private ObservableCollection _applicationfirmwareversions; /// - /// Gets or sets the Configurations. + /// Gets or sets the ApplicationFirmwareVersions. /// - public ObservableCollection Configurations + public ObservableCollection ApplicationFirmwareVersions { get { - return _configurations; + return _applicationfirmwareversions; } set { - _configurations = value; RaisePropertyChanged(nameof(Configurations)); + _applicationfirmwareversions = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersions)); } } - private ICollectionView _configurationsViewSource; + private ICollectionView _applicationfirmwareversionsViewSource; /// - /// Gets or sets the Configurations View Source. + /// Gets or sets the ApplicationFirmwareVersions View Source. /// - public ICollectionView ConfigurationsViewSource + public ICollectionView ApplicationFirmwareVersionsViewSource { get { - return _configurationsViewSource; + return _applicationfirmwareversionsViewSource; } set { - _configurationsViewSource = value; RaisePropertyChanged(nameof(ConfigurationsViewSource)); + _applicationfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersionsViewSource)); } } - private ObservableCollection _contacts; + private ObservableCollection _applicationosversions; /// - /// Gets or sets the Contacts. + /// Gets or sets the ApplicationOsVersions. /// - public ObservableCollection Contacts + public ObservableCollection ApplicationOsVersions { get { - return _contacts; + return _applicationosversions; } set { - _contacts = value; RaisePropertyChanged(nameof(Contacts)); + _applicationosversions = value; RaisePropertyChanged(nameof(ApplicationOsVersions)); } } - private ICollectionView _contactsViewSource; + private ICollectionView _applicationosversionsViewSource; /// - /// Gets or sets the Contacts View Source. + /// Gets or sets the ApplicationOsVersions View Source. /// - public ICollectionView ContactsViewSource + public ICollectionView ApplicationOsVersionsViewSource { get { - return _contactsViewSource; + return _applicationosversionsViewSource; } set { - _contactsViewSource = value; RaisePropertyChanged(nameof(ContactsViewSource)); + _applicationosversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationOsVersionsViewSource)); } } - private ObservableCollection _customers; + private ObservableCollection _bittypes; /// - /// Gets or sets the Customers. + /// Gets or sets the BitTypes. /// - public ObservableCollection Customers + public ObservableCollection BitTypes { get { - return _customers; + return _bittypes; } set { - _customers = value; RaisePropertyChanged(nameof(Customers)); + _bittypes = value; RaisePropertyChanged(nameof(BitTypes)); } } - private ICollectionView _customersViewSource; + private ICollectionView _bittypesViewSource; /// - /// Gets or sets the Customers View Source. + /// Gets or sets the BitTypes View Source. /// - public ICollectionView CustomersViewSource + public ICollectionView BitTypesViewSource { get { - return _customersViewSource; + return _bittypesViewSource; } set { - _customersViewSource = value; RaisePropertyChanged(nameof(CustomersViewSource)); + _bittypesViewSource = value; RaisePropertyChanged(nameof(BitTypesViewSource)); } } - private ObservableCollection _datastoreitems; + private ObservableCollection _brushstops; /// - /// Gets or sets the DataStoreItems. + /// Gets or sets the BrushStops. /// - public ObservableCollection DataStoreItems + public ObservableCollection BrushStops { get { - return _datastoreitems; + return _brushstops; } set { - _datastoreitems = value; RaisePropertyChanged(nameof(DataStoreItems)); + _brushstops = value; RaisePropertyChanged(nameof(BrushStops)); } } - private ICollectionView _datastoreitemsViewSource; + private ICollectionView _brushstopsViewSource; /// - /// Gets or sets the DataStoreItems View Source. + /// Gets or sets the BrushStops View Source. /// - public ICollectionView DataStoreItemsViewSource + public ICollectionView BrushStopsViewSource { get { - return _datastoreitemsViewSource; + return _brushstopsViewSource; } set { - _datastoreitemsViewSource = value; RaisePropertyChanged(nameof(DataStoreItemsViewSource)); + _brushstopsViewSource = value; RaisePropertyChanged(nameof(BrushStopsViewSource)); } } - private ObservableCollection _dispensertypes; + private ObservableCollection _btsrapplicationtypes; /// - /// Gets or sets the DispenserTypes. + /// Gets or sets the BtsrApplicationTypes. /// - public ObservableCollection DispenserTypes + public ObservableCollection BtsrApplicationTypes { get { - return _dispensertypes; + return _btsrapplicationtypes; } set { - _dispensertypes = value; RaisePropertyChanged(nameof(DispenserTypes)); + _btsrapplicationtypes = value; RaisePropertyChanged(nameof(BtsrApplicationTypes)); } } - private ICollectionView _dispensertypesViewSource; + private ICollectionView _btsrapplicationtypesViewSource; /// - /// Gets or sets the DispenserTypes View Source. + /// Gets or sets the BtsrApplicationTypes View Source. /// - public ICollectionView DispenserTypesViewSource + public ICollectionView BtsrApplicationTypesViewSource { get { - return _dispensertypesViewSource; + return _btsrapplicationtypesViewSource; } set { - _dispensertypesViewSource = value; RaisePropertyChanged(nameof(DispenserTypesViewSource)); + _btsrapplicationtypesViewSource = value; RaisePropertyChanged(nameof(BtsrApplicationTypesViewSource)); } } - private ObservableCollection _dispensers; + private ObservableCollection _btsryarntypes; /// - /// Gets or sets the Dispensers. + /// Gets or sets the BtsrYarnTypes. /// - public ObservableCollection Dispensers + public ObservableCollection BtsrYarnTypes { get { - return _dispensers; + return _btsryarntypes; } set { - _dispensers = value; RaisePropertyChanged(nameof(Dispensers)); + _btsryarntypes = value; RaisePropertyChanged(nameof(BtsrYarnTypes)); } } - private ICollectionView _dispensersViewSource; + private ICollectionView _btsryarntypesViewSource; /// - /// Gets or sets the Dispensers View Source. + /// Gets or sets the BtsrYarnTypes View Source. /// - public ICollectionView DispensersViewSource + public ICollectionView BtsrYarnTypesViewSource { get { - return _dispensersViewSource; + return _btsryarntypesViewSource; } set { - _dispensersViewSource = value; RaisePropertyChanged(nameof(DispensersViewSource)); + _btsryarntypesViewSource = value; RaisePropertyChanged(nameof(BtsrYarnTypesViewSource)); } } - private ObservableCollection _embeddedfirmwareversions; + private ObservableCollection _cartridgetypes; /// - /// Gets or sets the EmbeddedFirmwareVersions. + /// Gets or sets the CartridgeTypes. /// - public ObservableCollection EmbeddedFirmwareVersions + public ObservableCollection CartridgeTypes { get { - return _embeddedfirmwareversions; + return _cartridgetypes; } set { - _embeddedfirmwareversions = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersions)); + _cartridgetypes = value; RaisePropertyChanged(nameof(CartridgeTypes)); } } - private ICollectionView _embeddedfirmwareversionsViewSource; + private ICollectionView _cartridgetypesViewSource; /// - /// Gets or sets the EmbeddedFirmwareVersions View Source. + /// Gets or sets the CartridgeTypes View Source. /// - public ICollectionView EmbeddedFirmwareVersionsViewSource + public ICollectionView CartridgeTypesViewSource { get { - return _embeddedfirmwareversionsViewSource; + return _cartridgetypesViewSource; } set { - _embeddedfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersionsViewSource)); + _cartridgetypesViewSource = value; RaisePropertyChanged(nameof(CartridgeTypesViewSource)); } } - private ObservableCollection _eventtypes; + private ObservableCollection _cats; /// - /// Gets or sets the EventTypes. + /// Gets or sets the Cats. /// - public ObservableCollection EventTypes + public ObservableCollection Cats { get { - return _eventtypes; + return _cats; } set { - _eventtypes = value; RaisePropertyChanged(nameof(EventTypes)); + _cats = value; RaisePropertyChanged(nameof(Cats)); } } - private ICollectionView _eventtypesViewSource; + private ICollectionView _catsViewSource; /// - /// Gets or sets the EventTypes View Source. + /// Gets or sets the Cats View Source. /// - public ICollectionView EventTypesViewSource + public ICollectionView CatsViewSource { get { - return _eventtypesViewSource; + return _catsViewSource; } set { - _eventtypesViewSource = value; RaisePropertyChanged(nameof(EventTypesViewSource)); + _catsViewSource = value; RaisePropertyChanged(nameof(CatsViewSource)); } } - private ObservableCollection _fibershapes; + private ObservableCollection _ccts; /// - /// Gets or sets the FiberShapes. + /// Gets or sets the Ccts. /// - public ObservableCollection FiberShapes + public ObservableCollection Ccts { get { - return _fibershapes; + return _ccts; } set { - _fibershapes = value; RaisePropertyChanged(nameof(FiberShapes)); + _ccts = value; RaisePropertyChanged(nameof(Ccts)); } } - private ICollectionView _fibershapesViewSource; + private ICollectionView _cctsViewSource; /// - /// Gets or sets the FiberShapes View Source. + /// Gets or sets the Ccts View Source. /// - public ICollectionView FiberShapesViewSource + public ICollectionView CctsViewSource { get { - return _fibershapesViewSource; + return _cctsViewSource; } set { - _fibershapesViewSource = value; RaisePropertyChanged(nameof(FiberShapesViewSource)); + _cctsViewSource = value; RaisePropertyChanged(nameof(CctsViewSource)); } } - private ObservableCollection _fibersynths; + private ObservableCollection _colorcatalogs; /// - /// Gets or sets the FiberSynths. + /// Gets or sets the ColorCatalogs. /// - public ObservableCollection FiberSynths + public ObservableCollection ColorCatalogs { get { - return _fibersynths; + return _colorcatalogs; } set { - _fibersynths = value; RaisePropertyChanged(nameof(FiberSynths)); + _colorcatalogs = value; RaisePropertyChanged(nameof(ColorCatalogs)); } } - private ICollectionView _fibersynthsViewSource; + private ICollectionView _colorcatalogsViewSource; /// - /// Gets or sets the FiberSynths View Source. + /// Gets or sets the ColorCatalogs View Source. /// - public ICollectionView FiberSynthsViewSource + public ICollectionView ColorCatalogsViewSource { get { - return _fibersynthsViewSource; + return _colorcatalogsViewSource; } set { - _fibersynthsViewSource = value; RaisePropertyChanged(nameof(FiberSynthsViewSource)); + _colorcatalogsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsViewSource)); } } - private ObservableCollection _fseversions; + private ObservableCollection _colorcatalogsgroups; /// - /// Gets or sets the FseVersions. + /// Gets or sets the ColorCatalogsGroups. /// - public ObservableCollection FseVersions + public ObservableCollection ColorCatalogsGroups { get { - return _fseversions; + return _colorcatalogsgroups; } set { - _fseversions = value; RaisePropertyChanged(nameof(FseVersions)); + _colorcatalogsgroups = value; RaisePropertyChanged(nameof(ColorCatalogsGroups)); } } - private ICollectionView _fseversionsViewSource; + private ICollectionView _colorcatalogsgroupsViewSource; /// - /// Gets or sets the FseVersions View Source. + /// Gets or sets the ColorCatalogsGroups View Source. /// - public ICollectionView FseVersionsViewSource + public ICollectionView ColorCatalogsGroupsViewSource { get { - return _fseversionsViewSource; + return _colorcatalogsgroupsViewSource; } set { - _fseversionsViewSource = value; RaisePropertyChanged(nameof(FseVersionsViewSource)); + _colorcatalogsgroupsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsGroupsViewSource)); } } - private ObservableCollection _globaldatastoreitems; + private ObservableCollection _colorcatalogsitems; /// - /// Gets or sets the GlobalDataStoreItems. + /// Gets or sets the ColorCatalogsItems. /// - public ObservableCollection GlobalDataStoreItems + public ObservableCollection ColorCatalogsItems { get { - return _globaldatastoreitems; + return _colorcatalogsitems; } set { - _globaldatastoreitems = value; RaisePropertyChanged(nameof(GlobalDataStoreItems)); + _colorcatalogsitems = value; RaisePropertyChanged(nameof(ColorCatalogsItems)); } } - private ICollectionView _globaldatastoreitemsViewSource; + private ICollectionView _colorcatalogsitemsViewSource; /// - /// Gets or sets the GlobalDataStoreItems View Source. + /// Gets or sets the ColorCatalogsItems View Source. /// - public ICollectionView GlobalDataStoreItemsViewSource + public ICollectionView ColorCatalogsItemsViewSource { get { - return _globaldatastoreitemsViewSource; + return _colorcatalogsitemsViewSource; } set { - _globaldatastoreitemsViewSource = value; RaisePropertyChanged(nameof(GlobalDataStoreItemsViewSource)); + _colorcatalogsitemsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsViewSource)); } } - private ObservableCollection _hardwareblowertypes; + private ObservableCollection _colorcatalogsitemsrecipes; /// - /// Gets or sets the HardwareBlowerTypes. + /// Gets or sets the ColorCatalogsItemsRecipes. /// - public ObservableCollection HardwareBlowerTypes + public ObservableCollection ColorCatalogsItemsRecipes { get { - return _hardwareblowertypes; + return _colorcatalogsitemsrecipes; } set { - _hardwareblowertypes = value; RaisePropertyChanged(nameof(HardwareBlowerTypes)); + _colorcatalogsitemsrecipes = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipes)); } } - private ICollectionView _hardwareblowertypesViewSource; + private ICollectionView _colorcatalogsitemsrecipesViewSource; /// - /// Gets or sets the HardwareBlowerTypes View Source. + /// Gets or sets the ColorCatalogsItemsRecipes View Source. /// - public ICollectionView HardwareBlowerTypesViewSource + public ICollectionView ColorCatalogsItemsRecipesViewSource { get { - return _hardwareblowertypesViewSource; + return _colorcatalogsitemsrecipesViewSource; } set { - _hardwareblowertypesViewSource = value; RaisePropertyChanged(nameof(HardwareBlowerTypesViewSource)); + _colorcatalogsitemsrecipesViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipesViewSource)); } } - private ObservableCollection _hardwareblowers; + private ObservableCollection _colorprocessinkuptake; /// - /// Gets or sets the HardwareBlowers. + /// Gets or sets the ColorProcessInkUptake. /// - public ObservableCollection HardwareBlowers + public ObservableCollection ColorProcessInkUptake { get { - return _hardwareblowers; + return _colorprocessinkuptake; } set { - _hardwareblowers = value; RaisePropertyChanged(nameof(HardwareBlowers)); + _colorprocessinkuptake = value; RaisePropertyChanged(nameof(ColorProcessInkUptake)); } } - private ICollectionView _hardwareblowersViewSource; + private ICollectionView _colorprocessinkuptakeViewSource; /// - /// Gets or sets the HardwareBlowers View Source. + /// Gets or sets the ColorProcessInkUptake View Source. /// - public ICollectionView HardwareBlowersViewSource + public ICollectionView ColorProcessInkUptakeViewSource { get { - return _hardwareblowersViewSource; + return _colorprocessinkuptakeViewSource; } set { - _hardwareblowersViewSource = value; RaisePropertyChanged(nameof(HardwareBlowersViewSource)); + _colorprocessinkuptakeViewSource = value; RaisePropertyChanged(nameof(ColorProcessInkUptakeViewSource)); } } - private ObservableCollection _hardwarebreaksensortypes; + private ObservableCollection _colorspaces; /// - /// Gets or sets the HardwareBreakSensorTypes. + /// Gets or sets the ColorSpaces. /// - public ObservableCollection HardwareBreakSensorTypes + public ObservableCollection ColorSpaces { get { - return _hardwarebreaksensortypes; + return _colorspaces; } set { - _hardwarebreaksensortypes = value; RaisePropertyChanged(nameof(HardwareBreakSensorTypes)); + _colorspaces = value; RaisePropertyChanged(nameof(ColorSpaces)); } } - private ICollectionView _hardwarebreaksensortypesViewSource; + private ICollectionView _colorspacesViewSource; /// - /// Gets or sets the HardwareBreakSensorTypes View Source. + /// Gets or sets the ColorSpaces View Source. /// - public ICollectionView HardwareBreakSensorTypesViewSource + public ICollectionView ColorSpacesViewSource { get { - return _hardwarebreaksensortypesViewSource; + return _colorspacesViewSource; } set { - _hardwarebreaksensortypesViewSource = value; RaisePropertyChanged(nameof(HardwareBreakSensorTypesViewSource)); + _colorspacesViewSource = value; RaisePropertyChanged(nameof(ColorSpacesViewSource)); } } - private ObservableCollection _hardwarebreaksensors; + private ObservableCollection _configurations; /// - /// Gets or sets the HardwareBreakSensors. + /// Gets or sets the Configurations. /// - public ObservableCollection HardwareBreakSensors + public ObservableCollection Configurations { get { - return _hardwarebreaksensors; + return _configurations; } set { - _hardwarebreaksensors = value; RaisePropertyChanged(nameof(HardwareBreakSensors)); + _configurations = value; RaisePropertyChanged(nameof(Configurations)); } } - private ICollectionView _hardwarebreaksensorsViewSource; + private ICollectionView _configurationsViewSource; /// - /// Gets or sets the HardwareBreakSensors View Source. + /// Gets or sets the Configurations View Source. /// - public ICollectionView HardwareBreakSensorsViewSource + public ICollectionView ConfigurationsViewSource { get { - return _hardwarebreaksensorsViewSource; + return _configurationsViewSource; } set { - _hardwarebreaksensorsViewSource = value; RaisePropertyChanged(nameof(HardwareBreakSensorsViewSource)); + _configurationsViewSource = value; RaisePropertyChanged(nameof(ConfigurationsViewSource)); } } - private ObservableCollection _hardwaredancertypes; + private ObservableCollection _contacts; /// - /// Gets or sets the HardwareDancerTypes. + /// Gets or sets the Contacts. /// - public ObservableCollection HardwareDancerTypes + public ObservableCollection Contacts { get { - return _hardwaredancertypes; + return _contacts; } set { - _hardwaredancertypes = value; RaisePropertyChanged(nameof(HardwareDancerTypes)); + _contacts = value; RaisePropertyChanged(nameof(Contacts)); } } - private ICollectionView _hardwaredancertypesViewSource; + private ICollectionView _contactsViewSource; /// - /// Gets or sets the HardwareDancerTypes View Source. + /// Gets or sets the Contacts View Source. /// - public ICollectionView HardwareDancerTypesViewSource + public ICollectionView ContactsViewSource { get { - return _hardwaredancertypesViewSource; + return _contactsViewSource; } set { - _hardwaredancertypesViewSource = value; RaisePropertyChanged(nameof(HardwareDancerTypesViewSource)); + _contactsViewSource = value; RaisePropertyChanged(nameof(ContactsViewSource)); } } - private ObservableCollection _hardwaredancers; + private ObservableCollection _customers; /// - /// Gets or sets the HardwareDancers. + /// Gets or sets the Customers. /// - public ObservableCollection HardwareDancers + public ObservableCollection Customers { get { - return _hardwaredancers; + return _customers; } set { - _hardwaredancers = value; RaisePropertyChanged(nameof(HardwareDancers)); + _customers = value; RaisePropertyChanged(nameof(Customers)); } } - private ICollectionView _hardwaredancersViewSource; + private ICollectionView _customersViewSource; /// - /// Gets or sets the HardwareDancers View Source. + /// Gets or sets the Customers View Source. /// - public ICollectionView HardwareDancersViewSource + public ICollectionView CustomersViewSource { get { - return _hardwaredancersViewSource; + return _customersViewSource; } set { - _hardwaredancersViewSource = value; RaisePropertyChanged(nameof(HardwareDancersViewSource)); + _customersViewSource = value; RaisePropertyChanged(nameof(CustomersViewSource)); } } - private ObservableCollection _hardwaremotortypes; + private ObservableCollection _datastoreitems; /// - /// Gets or sets the HardwareMotorTypes. + /// Gets or sets the DataStoreItems. /// - public ObservableCollection HardwareMotorTypes + public ObservableCollection DataStoreItems { get { - return _hardwaremotortypes; + return _datastoreitems; } set { - _hardwaremotortypes = value; RaisePropertyChanged(nameof(HardwareMotorTypes)); + _datastoreitems = value; RaisePropertyChanged(nameof(DataStoreItems)); } } - private ICollectionView _hardwaremotortypesViewSource; + private ICollectionView _datastoreitemsViewSource; /// - /// Gets or sets the HardwareMotorTypes View Source. + /// Gets or sets the DataStoreItems View Source. /// - public ICollectionView HardwareMotorTypesViewSource + public ICollectionView DataStoreItemsViewSource { get { - return _hardwaremotortypesViewSource; + return _datastoreitemsViewSource; } set { - _hardwaremotortypesViewSource = value; RaisePropertyChanged(nameof(HardwareMotorTypesViewSource)); + _datastoreitemsViewSource = value; RaisePropertyChanged(nameof(DataStoreItemsViewSource)); } } - private ObservableCollection _hardwaremotors; + private ObservableCollection _dispensertypes; /// - /// Gets or sets the HardwareMotors. + /// Gets or sets the DispenserTypes. /// - public ObservableCollection HardwareMotors + public ObservableCollection DispenserTypes { get { - return _hardwaremotors; + return _dispensertypes; } set { - _hardwaremotors = value; RaisePropertyChanged(nameof(HardwareMotors)); + _dispensertypes = value; RaisePropertyChanged(nameof(DispenserTypes)); } } - private ICollectionView _hardwaremotorsViewSource; + private ICollectionView _dispensertypesViewSource; /// - /// Gets or sets the HardwareMotors View Source. + /// Gets or sets the DispenserTypes View Source. /// - public ICollectionView HardwareMotorsViewSource + public ICollectionView DispenserTypesViewSource { get { - return _hardwaremotorsViewSource; + return _dispensertypesViewSource; } set { - _hardwaremotorsViewSource = value; RaisePropertyChanged(nameof(HardwareMotorsViewSource)); + _dispensertypesViewSource = value; RaisePropertyChanged(nameof(DispenserTypesViewSource)); } } - private ObservableCollection _hardwarepidcontroltypes; + private ObservableCollection _dispensers; /// - /// Gets or sets the HardwarePidControlTypes. + /// Gets or sets the Dispensers. /// - public ObservableCollection HardwarePidControlTypes + public ObservableCollection Dispensers { get { - return _hardwarepidcontroltypes; + return _dispensers; } set { - _hardwarepidcontroltypes = value; RaisePropertyChanged(nameof(HardwarePidControlTypes)); + _dispensers = value; RaisePropertyChanged(nameof(Dispensers)); } } - private ICollectionView _hardwarepidcontroltypesViewSource; + private ICollectionView _dispensersViewSource; /// - /// Gets or sets the HardwarePidControlTypes View Source. + /// Gets or sets the Dispensers View Source. /// - public ICollectionView HardwarePidControlTypesViewSource + public ICollectionView DispensersViewSource { get { - return _hardwarepidcontroltypesViewSource; + return _dispensersViewSource; } set { - _hardwarepidcontroltypesViewSource = value; RaisePropertyChanged(nameof(HardwarePidControlTypesViewSource)); + _dispensersViewSource = value; RaisePropertyChanged(nameof(DispensersViewSource)); } } - private ObservableCollection _hardwarepidcontrols; + private ObservableCollection _embeddedfirmwareversions; /// - /// Gets or sets the HardwarePidControls. + /// Gets or sets the EmbeddedFirmwareVersions. /// - public ObservableCollection HardwarePidControls + public ObservableCollection EmbeddedFirmwareVersions { get { - return _hardwarepidcontrols; + return _embeddedfirmwareversions; } set { - _hardwarepidcontrols = value; RaisePropertyChanged(nameof(HardwarePidControls)); + _embeddedfirmwareversions = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersions)); } } - private ICollectionView _hardwarepidcontrolsViewSource; + private ICollectionView _embeddedfirmwareversionsViewSource; /// - /// Gets or sets the HardwarePidControls View Source. + /// Gets or sets the EmbeddedFirmwareVersions View Source. /// - public ICollectionView HardwarePidControlsViewSource + public ICollectionView EmbeddedFirmwareVersionsViewSource { get { - return _hardwarepidcontrolsViewSource; + return _embeddedfirmwareversionsViewSource; } set { - _hardwarepidcontrolsViewSource = value; RaisePropertyChanged(nameof(HardwarePidControlsViewSource)); + _embeddedfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersionsViewSource)); } } - private ObservableCollection _hardwarespeedsensortypes; + private ObservableCollection _eventtypes; /// - /// Gets or sets the HardwareSpeedSensorTypes. + /// Gets or sets the EventTypes. /// - public ObservableCollection HardwareSpeedSensorTypes + public ObservableCollection EventTypes { get { - return _hardwarespeedsensortypes; + return _eventtypes; } set { - _hardwarespeedsensortypes = value; RaisePropertyChanged(nameof(HardwareSpeedSensorTypes)); + _eventtypes = value; RaisePropertyChanged(nameof(EventTypes)); } } - private ICollectionView _hardwarespeedsensortypesViewSource; + private ICollectionView _eventtypesViewSource; /// - /// Gets or sets the HardwareSpeedSensorTypes View Source. + /// Gets or sets the EventTypes View Source. /// - public ICollectionView HardwareSpeedSensorTypesViewSource + public ICollectionView EventTypesViewSource { get { - return _hardwarespeedsensortypesViewSource; + return _eventtypesViewSource; } set { - _hardwarespeedsensortypesViewSource = value; RaisePropertyChanged(nameof(HardwareSpeedSensorTypesViewSource)); + _eventtypesViewSource = value; RaisePropertyChanged(nameof(EventTypesViewSource)); } } - private ObservableCollection _hardwarespeedsensors; + private ObservableCollection _fibershapes; /// - /// Gets or sets the HardwareSpeedSensors. + /// Gets or sets the FiberShapes. /// - public ObservableCollection HardwareSpeedSensors + public ObservableCollection FiberShapes { get { - return _hardwarespeedsensors; + return _fibershapes; } set { - _hardwarespeedsensors = value; RaisePropertyChanged(nameof(HardwareSpeedSensors)); + _fibershapes = value; RaisePropertyChanged(nameof(FiberShapes)); } } - private ICollectionView _hardwarespeedsensorsViewSource; + private ICollectionView _fibershapesViewSource; /// - /// Gets or sets the HardwareSpeedSensors View Source. + /// Gets or sets the FiberShapes View Source. /// - public ICollectionView HardwareSpeedSensorsViewSource + public ICollectionView FiberShapesViewSource { get { - return _hardwarespeedsensorsViewSource; + return _fibershapesViewSource; } set { - _hardwarespeedsensorsViewSource = value; RaisePropertyChanged(nameof(HardwareSpeedSensorsViewSource)); + _fibershapesViewSource = value; RaisePropertyChanged(nameof(FiberShapesViewSource)); } } - private ObservableCollection _hardwareversions; + private ObservableCollection _fibersynths; /// - /// Gets or sets the HardwareVersions. + /// Gets or sets the FiberSynths. /// - public ObservableCollection HardwareVersions + public ObservableCollection FiberSynths { get { - return _hardwareversions; + return _fibersynths; } set { - _hardwareversions = value; RaisePropertyChanged(nameof(HardwareVersions)); + _fibersynths = value; RaisePropertyChanged(nameof(FiberSynths)); } } - private ICollectionView _hardwareversionsViewSource; + private ICollectionView _fibersynthsViewSource; /// - /// Gets or sets the HardwareVersions View Source. + /// Gets or sets the FiberSynths View Source. /// - public ICollectionView HardwareVersionsViewSource + public ICollectionView FiberSynthsViewSource { get { - return _hardwareversionsViewSource; + return _fibersynthsViewSource; } set { - _hardwareversionsViewSource = value; RaisePropertyChanged(nameof(HardwareVersionsViewSource)); + _fibersynthsViewSource = value; RaisePropertyChanged(nameof(FiberSynthsViewSource)); } } - private ObservableCollection _hardwarewindertypes; + private ObservableCollection _fseversions; /// - /// Gets or sets the HardwareWinderTypes. + /// Gets or sets the FseVersions. /// - public ObservableCollection HardwareWinderTypes + public ObservableCollection FseVersions { get { - return _hardwarewindertypes; + return _fseversions; } set { - _hardwarewindertypes = value; RaisePropertyChanged(nameof(HardwareWinderTypes)); + _fseversions = value; RaisePropertyChanged(nameof(FseVersions)); } } - private ICollectionView _hardwarewindertypesViewSource; + private ICollectionView _fseversionsViewSource; /// - /// Gets or sets the HardwareWinderTypes View Source. + /// Gets or sets the FseVersions View Source. /// - public ICollectionView HardwareWinderTypesViewSource + public ICollectionView FseVersionsViewSource { get { - return _hardwarewindertypesViewSource; + return _fseversionsViewSource; } set { - _hardwarewindertypesViewSource = value; RaisePropertyChanged(nameof(HardwareWinderTypesViewSource)); + _fseversionsViewSource = value; RaisePropertyChanged(nameof(FseVersionsViewSource)); } } - private ObservableCollection _hardwarewinders; + private ObservableCollection _globaldatastoreitems; /// - /// Gets or sets the HardwareWinders. + /// Gets or sets the GlobalDataStoreItems. /// - public ObservableCollection HardwareWinders + public ObservableCollection GlobalDataStoreItems { get { - return _hardwarewinders; + return _globaldatastoreitems; } set { - _hardwarewinders = value; RaisePropertyChanged(nameof(HardwareWinders)); + _globaldatastoreitems = value; RaisePropertyChanged(nameof(GlobalDataStoreItems)); } } - private ICollectionView _hardwarewindersViewSource; + private ICollectionView _globaldatastoreitemsViewSource; /// - /// Gets or sets the HardwareWinders View Source. + /// Gets or sets the GlobalDataStoreItems View Source. /// - public ICollectionView HardwareWindersViewSource + public ICollectionView GlobalDataStoreItemsViewSource { get { - return _hardwarewindersViewSource; + return _globaldatastoreitemsViewSource; } set { - _hardwarewindersViewSource = value; RaisePropertyChanged(nameof(HardwareWindersViewSource)); + _globaldatastoreitemsViewSource = value; RaisePropertyChanged(nameof(GlobalDataStoreItemsViewSource)); } } - private ObservableCollection _idspackformulas; + private ObservableCollection _hardwareblowertypes; /// - /// Gets or sets the IdsPackFormulas. + /// Gets or sets the HardwareBlowerTypes. /// - public ObservableCollection IdsPackFormulas + public ObservableCollection HardwareBlowerTypes { get { - return _idspackformulas; + return _hardwareblowertypes; } set { - _idspackformulas = value; RaisePropertyChanged(nameof(IdsPackFormulas)); + _hardwareblowertypes = value; RaisePropertyChanged(nameof(HardwareBlowerTypes)); } } - private ICollectionView _idspackformulasViewSource; + private ICollectionView _hardwareblowertypesViewSource; /// - /// Gets or sets the IdsPackFormulas View Source. + /// Gets or sets the HardwareBlowerTypes View Source. /// - public ICollectionView IdsPackFormulasViewSource + public ICollectionView HardwareBlowerTypesViewSource { get { - return _idspackformulasViewSource; + return _hardwareblowertypesViewSource; } set { - _idspackformulasViewSource = value; RaisePropertyChanged(nameof(IdsPackFormulasViewSource)); + _hardwareblowertypesViewSource = value; RaisePropertyChanged(nameof(HardwareBlowerTypesViewSource)); } } - private ObservableCollection _idspacks; + private ObservableCollection _hardwareblowers; /// - /// Gets or sets the IdsPacks. + /// Gets or sets the HardwareBlowers. /// - public ObservableCollection IdsPacks + public ObservableCollection HardwareBlowers { get { - return _idspacks; + return _hardwareblowers; } set { - _idspacks = value; RaisePropertyChanged(nameof(IdsPacks)); + _hardwareblowers = value; RaisePropertyChanged(nameof(HardwareBlowers)); } } - private ICollectionView _idspacksViewSource; + private ICollectionView _hardwareblowersViewSource; /// - /// Gets or sets the IdsPacks View Source. + /// Gets or sets the HardwareBlowers View Source. /// - public ICollectionView IdsPacksViewSource + public ICollectionView HardwareBlowersViewSource { get { - return _idspacksViewSource; + return _hardwareblowersViewSource; } set { - _idspacksViewSource = value; RaisePropertyChanged(nameof(IdsPacksViewSource)); + _hardwareblowersViewSource = value; RaisePropertyChanged(nameof(HardwareBlowersViewSource)); } } - private ObservableCollection _jobruns; + private ObservableCollection _hardwarebreaksensortypes; /// - /// Gets or sets the JobRuns. + /// Gets or sets the HardwareBreakSensorTypes. /// - public ObservableCollection JobRuns + public ObservableCollection HardwareBreakSensorTypes { get { - return _jobruns; + return _hardwarebreaksensortypes; } set { - _jobruns = value; RaisePropertyChanged(nameof(JobRuns)); + _hardwarebreaksensortypes = value; RaisePropertyChanged(nameof(HardwareBreakSensorTypes)); } } - private ICollectionView _jobrunsViewSource; + private ICollectionView _hardwarebreaksensortypesViewSource; /// - /// Gets or sets the JobRuns View Source. + /// Gets or sets the HardwareBreakSensorTypes View Source. /// - public ICollectionView JobRunsViewSource + public ICollectionView HardwareBreakSensorTypesViewSource { get { - return _jobrunsViewSource; + return _hardwarebreaksensortypesViewSource; } set { - _jobrunsViewSource = value; RaisePropertyChanged(nameof(JobRunsViewSource)); + _hardwarebreaksensortypesViewSource = value; RaisePropertyChanged(nameof(HardwareBreakSensorTypesViewSource)); } } - private ObservableCollection _jobs; + private ObservableCollection _hardwarebreaksensors; /// - /// Gets or sets the Jobs. + /// Gets or sets the HardwareBreakSensors. /// - public ObservableCollection Jobs + public ObservableCollection HardwareBreakSensors { get { - return _jobs; + return _hardwarebreaksensors; } set { - _jobs = value; RaisePropertyChanged(nameof(Jobs)); + _hardwarebreaksensors = value; RaisePropertyChanged(nameof(HardwareBreakSensors)); } } - private ICollectionView _jobsViewSource; + private ICollectionView _hardwarebreaksensorsViewSource; /// - /// Gets or sets the Jobs View Source. + /// Gets or sets the HardwareBreakSensors View Source. /// - public ICollectionView JobsViewSource + public ICollectionView HardwareBreakSensorsViewSource { get { - return _jobsViewSource; + return _hardwarebreaksensorsViewSource; } set { - _jobsViewSource = value; RaisePropertyChanged(nameof(JobsViewSource)); + _hardwarebreaksensorsViewSource = value; RaisePropertyChanged(nameof(HardwareBreakSensorsViewSource)); } } - private ObservableCollection _linearmassdensityunits; + private ObservableCollection _hardwaredancertypes; /// - /// Gets or sets the LinearMassDensityUnits. + /// Gets or sets the HardwareDancerTypes. /// - public ObservableCollection LinearMassDensityUnits + public ObservableCollection HardwareDancerTypes { get { - return _linearmassdensityunits; + return _hardwaredancertypes; } set { - _linearmassdensityunits = value; RaisePropertyChanged(nameof(LinearMassDensityUnits)); + _hardwaredancertypes = value; RaisePropertyChanged(nameof(HardwareDancerTypes)); } } - private ICollectionView _linearmassdensityunitsViewSource; + private ICollectionView _hardwaredancertypesViewSource; /// - /// Gets or sets the LinearMassDensityUnits View Source. + /// Gets or sets the HardwareDancerTypes View Source. /// - public ICollectionView LinearMassDensityUnitsViewSource + public ICollectionView HardwareDancerTypesViewSource { get { - return _linearmassdensityunitsViewSource; + return _hardwaredancertypesViewSource; } set { - _linearmassdensityunitsViewSource = value; RaisePropertyChanged(nameof(LinearMassDensityUnitsViewSource)); + _hardwaredancertypesViewSource = value; RaisePropertyChanged(nameof(HardwareDancerTypesViewSource)); } } - private ObservableCollection _liquidtypes; + private ObservableCollection _hardwaredancers; /// - /// Gets or sets the LiquidTypes. + /// Gets or sets the HardwareDancers. /// - public ObservableCollection LiquidTypes + public ObservableCollection HardwareDancers { get { - return _liquidtypes; + return _hardwaredancers; } set { - _liquidtypes = value; RaisePropertyChanged(nameof(LiquidTypes)); + _hardwaredancers = value; RaisePropertyChanged(nameof(HardwareDancers)); } } - private ICollectionView _liquidtypesViewSource; + private ICollectionView _hardwaredancersViewSource; /// - /// Gets or sets the LiquidTypes View Source. + /// Gets or sets the HardwareDancers View Source. /// - public ICollectionView LiquidTypesViewSource + public ICollectionView HardwareDancersViewSource { get { - return _liquidtypesViewSource; + return _hardwaredancersViewSource; } set { - _liquidtypesViewSource = value; RaisePropertyChanged(nameof(LiquidTypesViewSource)); + _hardwaredancersViewSource = value; RaisePropertyChanged(nameof(HardwareDancersViewSource)); } } - private ObservableCollection _liquidtypesrmls; + private ObservableCollection _hardwaremotortypes; /// - /// Gets or sets the LiquidTypesRmls. + /// Gets or sets the HardwareMotorTypes. /// - public ObservableCollection LiquidTypesRmls + public ObservableCollection HardwareMotorTypes { get { - return _liquidtypesrmls; + return _hardwaremotortypes; } set { - _liquidtypesrmls = value; RaisePropertyChanged(nameof(LiquidTypesRmls)); + _hardwaremotortypes = value; RaisePropertyChanged(nameof(HardwareMotorTypes)); } } - private ICollectionView _liquidtypesrmlsViewSource; + private ICollectionView _hardwaremotortypesViewSource; /// - /// Gets or sets the LiquidTypesRmls View Source. + /// Gets or sets the HardwareMotorTypes View Source. /// - public ICollectionView LiquidTypesRmlsViewSource + public ICollectionView HardwareMotorTypesViewSource { get { - return _liquidtypesrmlsViewSource; + return _hardwaremotortypesViewSource; } set { - _liquidtypesrmlsViewSource = value; RaisePropertyChanged(nameof(LiquidTypesRmlsViewSource)); + _hardwaremotortypesViewSource = value; RaisePropertyChanged(nameof(HardwareMotorTypesViewSource)); } } - private ObservableCollection _machineprototypes; + private ObservableCollection _hardwaremotors; /// - /// Gets or sets the MachinePrototypes. + /// Gets or sets the HardwareMotors. /// - public ObservableCollection MachinePrototypes + public ObservableCollection HardwareMotors { get { - return _machineprototypes; + return _hardwaremotors; } set { - _machineprototypes = value; RaisePropertyChanged(nameof(MachinePrototypes)); + _hardwaremotors = value; RaisePropertyChanged(nameof(HardwareMotors)); } } - private ICollectionView _machineprototypesViewSource; + private ICollectionView _hardwaremotorsViewSource; /// - /// Gets or sets the MachinePrototypes View Source. + /// Gets or sets the HardwareMotors View Source. /// - public ICollectionView MachinePrototypesViewSource + public ICollectionView HardwareMotorsViewSource { get { - return _machineprototypesViewSource; + return _hardwaremotorsViewSource; } set { - _machineprototypesViewSource = value; RaisePropertyChanged(nameof(MachinePrototypesViewSource)); + _hardwaremotorsViewSource = value; RaisePropertyChanged(nameof(HardwareMotorsViewSource)); } } - private ObservableCollection _machinestudioversions; + private ObservableCollection _hardwarepidcontroltypes; /// - /// Gets or sets the MachineStudioVersions. + /// Gets or sets the HardwarePidControlTypes. /// - public ObservableCollection MachineStudioVersions + public ObservableCollection HardwarePidControlTypes { get { - return _machinestudioversions; + return _hardwarepidcontroltypes; } set { - _machinestudioversions = value; RaisePropertyChanged(nameof(MachineStudioVersions)); + _hardwarepidcontroltypes = value; RaisePropertyChanged(nameof(HardwarePidControlTypes)); } } - private ICollectionView _machinestudioversionsViewSource; + private ICollectionView _hardwarepidcontroltypesViewSource; /// - /// Gets or sets the MachineStudioVersions View Source. + /// Gets or sets the HardwarePidControlTypes View Source. /// - public ICollectionView MachineStudioVersionsViewSource + public ICollectionView HardwarePidControlTypesViewSource { get { - return _machinestudioversionsViewSource; + return _hardwarepidcontroltypesViewSource; } set { - _machinestudioversionsViewSource = value; RaisePropertyChanged(nameof(MachineStudioVersionsViewSource)); + _hardwarepidcontroltypesViewSource = value; RaisePropertyChanged(nameof(HardwarePidControlTypesViewSource)); } } - private ObservableCollection _machineversions; + private ObservableCollection _hardwarepidcontrols; /// - /// Gets or sets the MachineVersions. + /// Gets or sets the HardwarePidControls. /// - public ObservableCollection MachineVersions + public ObservableCollection HardwarePidControls { get { - return _machineversions; + return _hardwarepidcontrols; } set { - _machineversions = value; RaisePropertyChanged(nameof(MachineVersions)); + _hardwarepidcontrols = value; RaisePropertyChanged(nameof(HardwarePidControls)); } } - private ICollectionView _machineversionsViewSource; + private ICollectionView _hardwarepidcontrolsViewSource; /// - /// Gets or sets the MachineVersions View Source. + /// Gets or sets the HardwarePidControls View Source. /// - public ICollectionView MachineVersionsViewSource + public ICollectionView HardwarePidControlsViewSource { get { - return _machineversionsViewSource; + return _hardwarepidcontrolsViewSource; } set { - _machineversionsViewSource = value; RaisePropertyChanged(nameof(MachineVersionsViewSource)); + _hardwarepidcontrolsViewSource = value; RaisePropertyChanged(nameof(HardwarePidControlsViewSource)); } } - private ObservableCollection _machines; + private ObservableCollection _hardwarespeedsensortypes; /// - /// Gets or sets the Machines. + /// Gets or sets the HardwareSpeedSensorTypes. /// - public ObservableCollection Machines + public ObservableCollection HardwareSpeedSensorTypes { get { - return _machines; + return _hardwarespeedsensortypes; } set { - _machines = value; RaisePropertyChanged(nameof(Machines)); + _hardwarespeedsensortypes = value; RaisePropertyChanged(nameof(HardwareSpeedSensorTypes)); } } - private ICollectionView _machinesViewSource; + private ICollectionView _hardwarespeedsensortypesViewSource; /// - /// Gets or sets the Machines View Source. + /// Gets or sets the HardwareSpeedSensorTypes View Source. /// - public ICollectionView MachinesViewSource + public ICollectionView HardwareSpeedSensorTypesViewSource { get { - return _machinesViewSource; + return _hardwarespeedsensortypesViewSource; } set { - _machinesViewSource = value; RaisePropertyChanged(nameof(MachinesViewSource)); + _hardwarespeedsensortypesViewSource = value; RaisePropertyChanged(nameof(HardwareSpeedSensorTypesViewSource)); } } - private ObservableCollection _machinesevents; + private ObservableCollection _hardwarespeedsensors; /// - /// Gets or sets the MachinesEvents. + /// Gets or sets the HardwareSpeedSensors. /// - public ObservableCollection MachinesEvents + public ObservableCollection HardwareSpeedSensors { get { - return _machinesevents; + return _hardwarespeedsensors; } set { - _machinesevents = value; RaisePropertyChanged(nameof(MachinesEvents)); + _hardwarespeedsensors = value; RaisePropertyChanged(nameof(HardwareSpeedSensors)); } } - private ICollectionView _machineseventsViewSource; + private ICollectionView _hardwarespeedsensorsViewSource; /// - /// Gets or sets the MachinesEvents View Source. + /// Gets or sets the HardwareSpeedSensors View Source. /// - public ICollectionView MachinesEventsViewSource + public ICollectionView HardwareSpeedSensorsViewSource { get { - return _machineseventsViewSource; + return _hardwarespeedsensorsViewSource; } set { - _machineseventsViewSource = value; RaisePropertyChanged(nameof(MachinesEventsViewSource)); + _hardwarespeedsensorsViewSource = value; RaisePropertyChanged(nameof(HardwareSpeedSensorsViewSource)); } } - private ObservableCollection _mediaconditions; + private ObservableCollection _hardwareversions; /// - /// Gets or sets the MediaConditions. + /// Gets or sets the HardwareVersions. /// - public ObservableCollection MediaConditions + public ObservableCollection HardwareVersions { get { - return _mediaconditions; + return _hardwareversions; } set { - _mediaconditions = value; RaisePropertyChanged(nameof(MediaConditions)); + _hardwareversions = value; RaisePropertyChanged(nameof(HardwareVersions)); } } - private ICollectionView _mediaconditionsViewSource; + private ICollectionView _hardwareversionsViewSource; /// - /// Gets or sets the MediaConditions View Source. + /// Gets or sets the HardwareVersions View Source. /// - public ICollectionView MediaConditionsViewSource + public ICollectionView HardwareVersionsViewSource { get { - return _mediaconditionsViewSource; + return _hardwareversionsViewSource; } set { - _mediaconditionsViewSource = value; RaisePropertyChanged(nameof(MediaConditionsViewSource)); + _hardwareversionsViewSource = value; RaisePropertyChanged(nameof(HardwareVersionsViewSource)); } } - private ObservableCollection _mediamaterials; + private ObservableCollection _hardwarewindertypes; /// - /// Gets or sets the MediaMaterials. + /// Gets or sets the HardwareWinderTypes. /// - public ObservableCollection MediaMaterials + public ObservableCollection HardwareWinderTypes { get { - return _mediamaterials; + return _hardwarewindertypes; } set { - _mediamaterials = value; RaisePropertyChanged(nameof(MediaMaterials)); + _hardwarewindertypes = value; RaisePropertyChanged(nameof(HardwareWinderTypes)); } } - private ICollectionView _mediamaterialsViewSource; + private ICollectionView _hardwarewindertypesViewSource; /// - /// Gets or sets the MediaMaterials View Source. + /// Gets or sets the HardwareWinderTypes View Source. /// - public ICollectionView MediaMaterialsViewSource + public ICollectionView HardwareWinderTypesViewSource { get { - return _mediamaterialsViewSource; + return _hardwarewindertypesViewSource; } set { - _mediamaterialsViewSource = value; RaisePropertyChanged(nameof(MediaMaterialsViewSource)); + _hardwarewindertypesViewSource = value; RaisePropertyChanged(nameof(HardwareWinderTypesViewSource)); } } - private ObservableCollection _mediapurposes; + private ObservableCollection _hardwarewinders; /// - /// Gets or sets the MediaPurposes. + /// Gets or sets the HardwareWinders. /// - public ObservableCollection MediaPurposes + public ObservableCollection HardwareWinders { get { - return _mediapurposes; + return _hardwarewinders; } set { - _mediapurposes = value; RaisePropertyChanged(nameof(MediaPurposes)); + _hardwarewinders = value; RaisePropertyChanged(nameof(HardwareWinders)); } } - private ICollectionView _mediapurposesViewSource; + private ICollectionView _hardwarewindersViewSource; /// - /// Gets or sets the MediaPurposes View Source. + /// Gets or sets the HardwareWinders View Source. /// - public ICollectionView MediaPurposesViewSource + public ICollectionView HardwareWindersViewSource { get { - return _mediapurposesViewSource; + return _hardwarewindersViewSource; } set { - _mediapurposesViewSource = value; RaisePropertyChanged(nameof(MediaPurposesViewSource)); + _hardwarewindersViewSource = value; RaisePropertyChanged(nameof(HardwareWindersViewSource)); } } - private ObservableCollection _midtanktypes; + private ObservableCollection _idspackformulas; /// - /// Gets or sets the MidTankTypes. + /// Gets or sets the IdsPackFormulas. /// - public ObservableCollection MidTankTypes + public ObservableCollection IdsPackFormulas { get { - return _midtanktypes; + return _idspackformulas; } set { - _midtanktypes = value; RaisePropertyChanged(nameof(MidTankTypes)); + _idspackformulas = value; RaisePropertyChanged(nameof(IdsPackFormulas)); } } - private ICollectionView _midtanktypesViewSource; + private ICollectionView _idspackformulasViewSource; /// - /// Gets or sets the MidTankTypes View Source. + /// Gets or sets the IdsPackFormulas View Source. /// - public ICollectionView MidTankTypesViewSource + public ICollectionView IdsPackFormulasViewSource { get { - return _midtanktypesViewSource; + return _idspackformulasViewSource; } set { - _midtanktypesViewSource = value; RaisePropertyChanged(nameof(MidTankTypesViewSource)); + _idspackformulasViewSource = value; RaisePropertyChanged(nameof(IdsPackFormulasViewSource)); } } - private ObservableCollection _organizations; + private ObservableCollection _idspacks; /// - /// Gets or sets the Organizations. + /// Gets or sets the IdsPacks. /// - public ObservableCollection Organizations + public ObservableCollection IdsPacks { get { - return _organizations; + return _idspacks; } set { - _organizations = value; RaisePropertyChanged(nameof(Organizations)); + _idspacks = value; RaisePropertyChanged(nameof(IdsPacks)); } } - private ICollectionView _organizationsViewSource; + private ICollectionView _idspacksViewSource; /// - /// Gets or sets the Organizations View Source. + /// Gets or sets the IdsPacks View Source. /// - public ICollectionView OrganizationsViewSource + public ICollectionView IdsPacksViewSource { get { - return _organizationsViewSource; + return _idspacksViewSource; } set { - _organizationsViewSource = value; RaisePropertyChanged(nameof(OrganizationsViewSource)); + _idspacksViewSource = value; RaisePropertyChanged(nameof(IdsPacksViewSource)); } } - private ObservableCollection _permissions; + private ObservableCollection _jobruns; /// - /// Gets or sets the Permissions. + /// Gets or sets the JobRuns. /// - public ObservableCollection Permissions + public ObservableCollection JobRuns { get { - return _permissions; + return _jobruns; } set { - _permissions = value; RaisePropertyChanged(nameof(Permissions)); + _jobruns = value; RaisePropertyChanged(nameof(JobRuns)); } } - private ICollectionView _permissionsViewSource; + private ICollectionView _jobrunsViewSource; /// - /// Gets or sets the Permissions View Source. + /// Gets or sets the JobRuns View Source. /// - public ICollectionView PermissionsViewSource + public ICollectionView JobRunsViewSource { get { - return _permissionsViewSource; + return _jobrunsViewSource; } set { - _permissionsViewSource = value; RaisePropertyChanged(nameof(PermissionsViewSource)); + _jobrunsViewSource = value; RaisePropertyChanged(nameof(JobRunsViewSource)); } } - private ObservableCollection _processparameterstables; + private ObservableCollection _jobs; /// - /// Gets or sets the ProcessParametersTables. + /// Gets or sets the Jobs. /// - public ObservableCollection ProcessParametersTables + public ObservableCollection Jobs { get { - return _processparameterstables; + return _jobs; } set { - _processparameterstables = value; RaisePropertyChanged(nameof(ProcessParametersTables)); + _jobs = value; RaisePropertyChanged(nameof(Jobs)); } } - private ICollectionView _processparameterstablesViewSource; + private ICollectionView _jobsViewSource; /// - /// Gets or sets the ProcessParametersTables View Source. + /// Gets or sets the Jobs View Source. /// - public ICollectionView ProcessParametersTablesViewSource + public ICollectionView JobsViewSource { get { - return _processparameterstablesViewSource; + return _jobsViewSource; } set { - _processparameterstablesViewSource = value; RaisePropertyChanged(nameof(ProcessParametersTablesViewSource)); + _jobsViewSource = value; RaisePropertyChanged(nameof(JobsViewSource)); } } - private ObservableCollection _processparameterstablesgroups; + private ObservableCollection _linearmassdensityunits; /// - /// Gets or sets the ProcessParametersTablesGroups. + /// Gets or sets the LinearMassDensityUnits. /// - public ObservableCollection ProcessParametersTablesGroups + public ObservableCollection LinearMassDensityUnits { get { - return _processparameterstablesgroups; + return _linearmassdensityunits; } set { - _processparameterstablesgroups = value; RaisePropertyChanged(nameof(ProcessParametersTablesGroups)); + _linearmassdensityunits = value; RaisePropertyChanged(nameof(LinearMassDensityUnits)); } } - private ICollectionView _processparameterstablesgroupsViewSource; + private ICollectionView _linearmassdensityunitsViewSource; /// - /// Gets or sets the ProcessParametersTablesGroups View Source. + /// Gets or sets the LinearMassDensityUnits View Source. /// - public ICollectionView ProcessParametersTablesGroupsViewSource + public ICollectionView LinearMassDensityUnitsViewSource { get { - return _processparameterstablesgroupsViewSource; + return _linearmassdensityunitsViewSource; } set { - _processparameterstablesgroupsViewSource = value; RaisePropertyChanged(nameof(ProcessParametersTablesGroupsViewSource)); + _linearmassdensityunitsViewSource = value; RaisePropertyChanged(nameof(LinearMassDensityUnitsViewSource)); } } - private ObservableCollection _publishedprocedureprojects; + private ObservableCollection _liquidtypes; /// - /// Gets or sets the PublishedProcedureProjects. + /// Gets or sets the LiquidTypes. /// - public ObservableCollection PublishedProcedureProjects + public ObservableCollection LiquidTypes { get { - return _publishedprocedureprojects; + return _liquidtypes; } set { - _publishedprocedureprojects = value; RaisePropertyChanged(nameof(PublishedProcedureProjects)); + _liquidtypes = value; RaisePropertyChanged(nameof(LiquidTypes)); } } - private ICollectionView _publishedprocedureprojectsViewSource; + private ICollectionView _liquidtypesViewSource; /// - /// Gets or sets the PublishedProcedureProjects View Source. + /// Gets or sets the LiquidTypes View Source. /// - public ICollectionView PublishedProcedureProjectsViewSource + public ICollectionView LiquidTypesViewSource { get { - return _publishedprocedureprojectsViewSource; + return _liquidtypesViewSource; } set { - _publishedprocedureprojectsViewSource = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsViewSource)); + _liquidtypesViewSource = value; RaisePropertyChanged(nameof(LiquidTypesViewSource)); } } - private ObservableCollection _publishedprocedureprojectsversions; + private ObservableCollection _liquidtypesrmls; /// - /// Gets or sets the PublishedProcedureProjectsVersions. + /// Gets or sets the LiquidTypesRmls. /// - public ObservableCollection PublishedProcedureProjectsVersions + public ObservableCollection LiquidTypesRmls { get { - return _publishedprocedureprojectsversions; + return _liquidtypesrmls; } set { - _publishedprocedureprojectsversions = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsVersions)); + _liquidtypesrmls = value; RaisePropertyChanged(nameof(LiquidTypesRmls)); } } - private ICollectionView _publishedprocedureprojectsversionsViewSource; + private ICollectionView _liquidtypesrmlsViewSource; /// - /// Gets or sets the PublishedProcedureProjectsVersions View Source. + /// Gets or sets the LiquidTypesRmls View Source. /// - public ICollectionView PublishedProcedureProjectsVersionsViewSource + public ICollectionView LiquidTypesRmlsViewSource { get { - return _publishedprocedureprojectsversionsViewSource; + return _liquidtypesrmlsViewSource; } set { - _publishedprocedureprojectsversionsViewSource = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsVersionsViewSource)); + _liquidtypesrmlsViewSource = value; RaisePropertyChanged(nameof(LiquidTypesRmlsViewSource)); } } - private ObservableCollection _rmlextensiontestresults; + private ObservableCollection _machineprototypes; /// - /// Gets or sets the RmlExtensionTestResults. + /// Gets or sets the MachinePrototypes. /// - public ObservableCollection RmlExtensionTestResults + public ObservableCollection MachinePrototypes { get { - return _rmlextensiontestresults; + return _machineprototypes; } set { - _rmlextensiontestresults = value; RaisePropertyChanged(nameof(RmlExtensionTestResults)); + _machineprototypes = value; RaisePropertyChanged(nameof(MachinePrototypes)); } } - private ICollectionView _rmlextensiontestresultsViewSource; + private ICollectionView _machineprototypesViewSource; /// - /// Gets or sets the RmlExtensionTestResults View Source. + /// Gets or sets the MachinePrototypes View Source. /// - public ICollectionView RmlExtensionTestResultsViewSource + public ICollectionView MachinePrototypesViewSource { get { - return _rmlextensiontestresultsViewSource; + return _machineprototypesViewSource; } set { - _rmlextensiontestresultsViewSource = value; RaisePropertyChanged(nameof(RmlExtensionTestResultsViewSource)); + _machineprototypesViewSource = value; RaisePropertyChanged(nameof(MachinePrototypesViewSource)); } } - private ObservableCollection _rmls; + private ObservableCollection _machinestudioversions; /// - /// Gets or sets the Rmls. + /// Gets or sets the MachineStudioVersions. /// - public ObservableCollection Rmls + public ObservableCollection MachineStudioVersions { get { - return _rmls; + return _machinestudioversions; } set { - _rmls = value; RaisePropertyChanged(nameof(Rmls)); + _machinestudioversions = value; RaisePropertyChanged(nameof(MachineStudioVersions)); } } - private ICollectionView _rmlsViewSource; + private ICollectionView _machinestudioversionsViewSource; /// - /// Gets or sets the Rmls View Source. + /// Gets or sets the MachineStudioVersions View Source. /// - public ICollectionView RmlsViewSource + public ICollectionView MachineStudioVersionsViewSource { get { - return _rmlsViewSource; + return _machinestudioversionsViewSource; } set { - _rmlsViewSource = value; RaisePropertyChanged(nameof(RmlsViewSource)); + _machinestudioversionsViewSource = value; RaisePropertyChanged(nameof(MachineStudioVersionsViewSource)); } } - private ObservableCollection _rmlsextensions; + private ObservableCollection _machineversions; /// - /// Gets or sets the RmlsExtensions. + /// Gets or sets the MachineVersions. /// - public ObservableCollection RmlsExtensions + public ObservableCollection MachineVersions { get { - return _rmlsextensions; + return _machineversions; } set { - _rmlsextensions = value; RaisePropertyChanged(nameof(RmlsExtensions)); + _machineversions = value; RaisePropertyChanged(nameof(MachineVersions)); } } - private ICollectionView _rmlsextensionsViewSource; + private ICollectionView _machineversionsViewSource; /// - /// Gets or sets the RmlsExtensions View Source. + /// Gets or sets the MachineVersions View Source. /// - public ICollectionView RmlsExtensionsViewSource + public ICollectionView MachineVersionsViewSource { get { - return _rmlsextensionsViewSource; + return _machineversionsViewSource; } set { - _rmlsextensionsViewSource = value; RaisePropertyChanged(nameof(RmlsExtensionsViewSource)); + _machineversionsViewSource = value; RaisePropertyChanged(nameof(MachineVersionsViewSource)); } } - private ObservableCollection _rmlsspools; + private ObservableCollection _machines; /// - /// Gets or sets the RmlsSpools. + /// Gets or sets the Machines. /// - public ObservableCollection RmlsSpools + public ObservableCollection Machines { get { - return _rmlsspools; + return _machines; } set { - _rmlsspools = value; RaisePropertyChanged(nameof(RmlsSpools)); + _machines = value; RaisePropertyChanged(nameof(Machines)); } } - private ICollectionView _rmlsspoolsViewSource; + private ICollectionView _machinesViewSource; /// - /// Gets or sets the RmlsSpools View Source. + /// Gets or sets the Machines View Source. /// - public ICollectionView RmlsSpoolsViewSource + public ICollectionView MachinesViewSource { get { - return _rmlsspoolsViewSource; + return _machinesViewSource; } set { - _rmlsspoolsViewSource = value; RaisePropertyChanged(nameof(RmlsSpoolsViewSource)); + _machinesViewSource = value; RaisePropertyChanged(nameof(MachinesViewSource)); } } - private ObservableCollection _roles; + private ObservableCollection _machinesevents; /// - /// Gets or sets the Roles. + /// Gets or sets the MachinesEvents. /// - public ObservableCollection Roles + public ObservableCollection MachinesEvents { get { - return _roles; + return _machinesevents; } set { - _roles = value; RaisePropertyChanged(nameof(Roles)); + _machinesevents = value; RaisePropertyChanged(nameof(MachinesEvents)); } } - private ICollectionView _rolesViewSource; + private ICollectionView _machineseventsViewSource; /// - /// Gets or sets the Roles View Source. + /// Gets or sets the MachinesEvents View Source. /// - public ICollectionView RolesViewSource + public ICollectionView MachinesEventsViewSource { get { - return _rolesViewSource; + return _machineseventsViewSource; } set { - _rolesViewSource = value; RaisePropertyChanged(nameof(RolesViewSource)); + _machineseventsViewSource = value; RaisePropertyChanged(nameof(MachinesEventsViewSource)); } } - private ObservableCollection _rolespermissions; + private ObservableCollection _mediaconditions; /// - /// Gets or sets the RolesPermissions. + /// Gets or sets the MediaConditions. /// - public ObservableCollection RolesPermissions + public ObservableCollection MediaConditions { get { - return _rolespermissions; + return _mediaconditions; } set { - _rolespermissions = value; RaisePropertyChanged(nameof(RolesPermissions)); + _mediaconditions = value; RaisePropertyChanged(nameof(MediaConditions)); } } - private ICollectionView _rolespermissionsViewSource; + private ICollectionView _mediaconditionsViewSource; /// - /// Gets or sets the RolesPermissions View Source. + /// Gets or sets the MediaConditions View Source. /// - public ICollectionView RolesPermissionsViewSource + public ICollectionView MediaConditionsViewSource { get { - return _rolespermissionsViewSource; + return _mediaconditionsViewSource; } set { - _rolespermissionsViewSource = value; RaisePropertyChanged(nameof(RolesPermissionsViewSource)); + _mediaconditionsViewSource = value; RaisePropertyChanged(nameof(MediaConditionsViewSource)); } } - private ObservableCollection _rubbingresults; + private ObservableCollection _mediamaterials; /// - /// Gets or sets the RubbingResults. + /// Gets or sets the MediaMaterials. /// - public ObservableCollection RubbingResults + public ObservableCollection MediaMaterials { get { - return _rubbingresults; + return _mediamaterials; } set { - _rubbingresults = value; RaisePropertyChanged(nameof(RubbingResults)); + _mediamaterials = value; RaisePropertyChanged(nameof(MediaMaterials)); } } - private ICollectionView _rubbingresultsViewSource; + private ICollectionView _mediamaterialsViewSource; /// - /// Gets or sets the RubbingResults View Source. + /// Gets or sets the MediaMaterials View Source. /// - public ICollectionView RubbingResultsViewSource + public ICollectionView MediaMaterialsViewSource { get { - return _rubbingresultsViewSource; + return _mediamaterialsViewSource; } set { - _rubbingresultsViewSource = value; RaisePropertyChanged(nameof(RubbingResultsViewSource)); + _mediamaterialsViewSource = value; RaisePropertyChanged(nameof(MediaMaterialsViewSource)); } } - private ObservableCollection _segments; + private ObservableCollection _mediapurposes; /// - /// Gets or sets the Segments. + /// Gets or sets the MediaPurposes. /// - public ObservableCollection Segments + public ObservableCollection MediaPurposes { get { - return _segments; + return _mediapurposes; } set { - _segments = value; RaisePropertyChanged(nameof(Segments)); + _mediapurposes = value; RaisePropertyChanged(nameof(MediaPurposes)); } } - private ICollectionView _segmentsViewSource; + private ICollectionView _mediapurposesViewSource; /// - /// Gets or sets the Segments View Source. + /// Gets or sets the MediaPurposes View Source. /// - public ICollectionView SegmentsViewSource + public ICollectionView MediaPurposesViewSource { get { - return _segmentsViewSource; + return _mediapurposesViewSource; } set { - _segmentsViewSource = value; RaisePropertyChanged(nameof(SegmentsViewSource)); + _mediapurposesViewSource = value; RaisePropertyChanged(nameof(MediaPurposesViewSource)); } } - private ObservableCollection _sites; + private ObservableCollection _midtanktypes; /// - /// Gets or sets the Sites. + /// Gets or sets the MidTankTypes. /// - public ObservableCollection Sites + public ObservableCollection MidTankTypes { get { - return _sites; + return _midtanktypes; } set { - _sites = value; RaisePropertyChanged(nameof(Sites)); + _midtanktypes = value; RaisePropertyChanged(nameof(MidTankTypes)); } } - private ICollectionView _sitesViewSource; + private ICollectionView _midtanktypesViewSource; /// - /// Gets or sets the Sites View Source. + /// Gets or sets the MidTankTypes View Source. /// - public ICollectionView SitesViewSource + public ICollectionView MidTankTypesViewSource { get { - return _sitesViewSource; + return _midtanktypesViewSource; } set { - _sitesViewSource = value; RaisePropertyChanged(nameof(SitesViewSource)); + _midtanktypesViewSource = value; RaisePropertyChanged(nameof(MidTankTypesViewSource)); } } - private ObservableCollection _sitescatalogs; + private ObservableCollection _organizations; /// - /// Gets or sets the SitesCatalogs. + /// Gets or sets the Organizations. /// - public ObservableCollection SitesCatalogs + public ObservableCollection Organizations { get { - return _sitescatalogs; + return _organizations; } set { - _sitescatalogs = value; RaisePropertyChanged(nameof(SitesCatalogs)); + _organizations = value; RaisePropertyChanged(nameof(Organizations)); } } - private ICollectionView _sitescatalogsViewSource; + private ICollectionView _organizationsViewSource; /// - /// Gets or sets the SitesCatalogs View Source. + /// Gets or sets the Organizations View Source. /// - public ICollectionView SitesCatalogsViewSource + public ICollectionView OrganizationsViewSource { get { - return _sitescatalogsViewSource; + return _organizationsViewSource; } set { - _sitescatalogsViewSource = value; RaisePropertyChanged(nameof(SitesCatalogsViewSource)); + _organizationsViewSource = value; RaisePropertyChanged(nameof(OrganizationsViewSource)); } } - private ObservableCollection _sitesrmls; + private ObservableCollection _permissions; /// - /// Gets or sets the SitesRmls. + /// Gets or sets the Permissions. /// - public ObservableCollection SitesRmls + public ObservableCollection Permissions { get { - return _sitesrmls; + return _permissions; } set { - _sitesrmls = value; RaisePropertyChanged(nameof(SitesRmls)); + _permissions = value; RaisePropertyChanged(nameof(Permissions)); } } - private ICollectionView _sitesrmlsViewSource; + private ICollectionView _permissionsViewSource; /// - /// Gets or sets the SitesRmls View Source. + /// Gets or sets the Permissions View Source. /// - public ICollectionView SitesRmlsViewSource + public ICollectionView PermissionsViewSource { get { - return _sitesrmlsViewSource; + return _permissionsViewSource; } set { - _sitesrmlsViewSource = value; RaisePropertyChanged(nameof(SitesRmlsViewSource)); + _permissionsViewSource = value; RaisePropertyChanged(nameof(PermissionsViewSource)); } } - private ObservableCollection _spooltypes; + private ObservableCollection _processparameterstables; /// - /// Gets or sets the SpoolTypes. + /// Gets or sets the ProcessParametersTables. /// - public ObservableCollection SpoolTypes + public ObservableCollection ProcessParametersTables { get { - return _spooltypes; + return _processparameterstables; } set { - _spooltypes = value; RaisePropertyChanged(nameof(SpoolTypes)); + _processparameterstables = value; RaisePropertyChanged(nameof(ProcessParametersTables)); } } - private ICollectionView _spooltypesViewSource; + private ICollectionView _processparameterstablesViewSource; /// - /// Gets or sets the SpoolTypes View Source. + /// Gets or sets the ProcessParametersTables View Source. /// - public ICollectionView SpoolTypesViewSource + public ICollectionView ProcessParametersTablesViewSource { get { - return _spooltypesViewSource; + return _processparameterstablesViewSource; } set { - _spooltypesViewSource = value; RaisePropertyChanged(nameof(SpoolTypesViewSource)); + _processparameterstablesViewSource = value; RaisePropertyChanged(nameof(ProcessParametersTablesViewSource)); } } - private ObservableCollection _spools; + private ObservableCollection _processparameterstablesgroups; /// - /// Gets or sets the Spools. + /// Gets or sets the ProcessParametersTablesGroups. /// - public ObservableCollection Spools + public ObservableCollection ProcessParametersTablesGroups { get { - return _spools; + return _processparameterstablesgroups; } set { - _spools = value; RaisePropertyChanged(nameof(Spools)); + _processparameterstablesgroups = value; RaisePropertyChanged(nameof(ProcessParametersTablesGroups)); } } - private ICollectionView _spoolsViewSource; + private ICollectionView _processparameterstablesgroupsViewSource; /// - /// Gets or sets the Spools View Source. + /// Gets or sets the ProcessParametersTablesGroups View Source. /// - public ICollectionView SpoolsViewSource + public ICollectionView ProcessParametersTablesGroupsViewSource { get { - return _spoolsViewSource; + return _processparameterstablesgroupsViewSource; } set { - _spoolsViewSource = value; RaisePropertyChanged(nameof(SpoolsViewSource)); + _processparameterstablesgroupsViewSource = value; RaisePropertyChanged(nameof(ProcessParametersTablesGroupsViewSource)); } } - private ObservableCollection _sysdiagrams; + private ObservableCollection _publishedprocedureprojects; /// - /// Gets or sets the Sysdiagrams. + /// Gets or sets the PublishedProcedureProjects. /// - public ObservableCollection Sysdiagrams + public ObservableCollection PublishedProcedureProjects { get { - return _sysdiagrams; + return _publishedprocedureprojects; } set { - _sysdiagrams = value; RaisePropertyChanged(nameof(Sysdiagrams)); + _publishedprocedureprojects = value; RaisePropertyChanged(nameof(PublishedProcedureProjects)); } } - private ICollectionView _sysdiagramsViewSource; + private ICollectionView _publishedprocedureprojectsViewSource; /// - /// Gets or sets the Sysdiagrams View Source. + /// Gets or sets the PublishedProcedureProjects View Source. /// - public ICollectionView SysdiagramsViewSource + public ICollectionView PublishedProcedureProjectsViewSource { get { - return _sysdiagramsViewSource; + return _publishedprocedureprojectsViewSource; } set { - _sysdiagramsViewSource = value; RaisePropertyChanged(nameof(SysdiagramsViewSource)); + _publishedprocedureprojectsViewSource = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsViewSource)); } } - private ObservableCollection _tangoupdates; + private ObservableCollection _publishedprocedureprojectsversions; /// - /// Gets or sets the TangoUpdates. + /// Gets or sets the PublishedProcedureProjectsVersions. /// - public ObservableCollection TangoUpdates + public ObservableCollection PublishedProcedureProjectsVersions { get { - return _tangoupdates; + return _publishedprocedureprojectsversions; } set { - _tangoupdates = value; RaisePropertyChanged(nameof(TangoUpdates)); + _publishedprocedureprojectsversions = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsVersions)); } } - private ICollectionView _tangoupdatesViewSource; + private ICollectionView _publishedprocedureprojectsversionsViewSource; /// - /// Gets or sets the TangoUpdates View Source. + /// Gets or sets the PublishedProcedureProjectsVersions View Source. /// - public ICollectionView TangoUpdatesViewSource + public ICollectionView PublishedProcedureProjectsVersionsViewSource { get { - return _tangoupdatesViewSource; + return _publishedprocedureprojectsversionsViewSource; } set { - _tangoupdatesViewSource = value; RaisePropertyChanged(nameof(TangoUpdatesViewSource)); + _publishedprocedureprojectsversionsViewSource = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsVersionsViewSource)); } } - private ObservableCollection _tangoversions; + private ObservableCollection _rmls; /// - /// Gets or sets the TangoVersions. + /// Gets or sets the Rmls. /// - public ObservableCollection TangoVersions + public ObservableCollection Rmls { get { - return _tangoversions; + return _rmls; } set { - _tangoversions = value; RaisePropertyChanged(nameof(TangoVersions)); + _rmls = value; RaisePropertyChanged(nameof(Rmls)); } } - private ICollectionView _tangoversionsViewSource; + private ICollectionView _rmlsViewSource; /// - /// Gets or sets the TangoVersions View Source. + /// Gets or sets the Rmls View Source. /// - public ICollectionView TangoVersionsViewSource + public ICollectionView RmlsViewSource { get { - return _tangoversionsViewSource; + return _rmlsViewSource; } set { - _tangoversionsViewSource = value; RaisePropertyChanged(nameof(TangoVersionsViewSource)); + _rmlsViewSource = value; RaisePropertyChanged(nameof(RmlsViewSource)); } } - private ObservableCollection _techcontrollers; + private ObservableCollection _rmlsspools; /// - /// Gets or sets the TechControllers. + /// Gets or sets the RmlsSpools. /// - public ObservableCollection TechControllers + public ObservableCollection RmlsSpools { get { - return _techcontrollers; + return _rmlsspools; } set { - _techcontrollers = value; RaisePropertyChanged(nameof(TechControllers)); + _rmlsspools = value; RaisePropertyChanged(nameof(RmlsSpools)); } } - private ICollectionView _techcontrollersViewSource; + private ICollectionView _rmlsspoolsViewSource; /// - /// Gets or sets the TechControllers View Source. + /// Gets or sets the RmlsSpools View Source. /// - public ICollectionView TechControllersViewSource + public ICollectionView RmlsSpoolsViewSource { get { - return _techcontrollersViewSource; + return _rmlsspoolsViewSource; } set { - _techcontrollersViewSource = value; RaisePropertyChanged(nameof(TechControllersViewSource)); + _rmlsspoolsViewSource = value; RaisePropertyChanged(nameof(RmlsSpoolsViewSource)); } } - private ObservableCollection _techdispensers; + private ObservableCollection _roles; /// - /// Gets or sets the TechDispensers. + /// Gets or sets the Roles. /// - public ObservableCollection TechDispensers + public ObservableCollection Roles { get { - return _techdispensers; + return _roles; } set { - _techdispensers = value; RaisePropertyChanged(nameof(TechDispensers)); + _roles = value; RaisePropertyChanged(nameof(Roles)); } } - private ICollectionView _techdispensersViewSource; + private ICollectionView _rolesViewSource; /// - /// Gets or sets the TechDispensers View Source. + /// Gets or sets the Roles View Source. /// - public ICollectionView TechDispensersViewSource + public ICollectionView RolesViewSource { get { - return _techdispensersViewSource; + return _rolesViewSource; } set { - _techdispensersViewSource = value; RaisePropertyChanged(nameof(TechDispensersViewSource)); + _rolesViewSource = value; RaisePropertyChanged(nameof(RolesViewSource)); } } - private ObservableCollection _techheaters; + private ObservableCollection _rolespermissions; /// - /// Gets or sets the TechHeaters. + /// Gets or sets the RolesPermissions. /// - public ObservableCollection TechHeaters + public ObservableCollection RolesPermissions { get { - return _techheaters; + return _rolespermissions; } set { - _techheaters = value; RaisePropertyChanged(nameof(TechHeaters)); + _rolespermissions = value; RaisePropertyChanged(nameof(RolesPermissions)); } } - private ICollectionView _techheatersViewSource; + private ICollectionView _rolespermissionsViewSource; /// - /// Gets or sets the TechHeaters View Source. + /// Gets or sets the RolesPermissions View Source. /// - public ICollectionView TechHeatersViewSource + public ICollectionView RolesPermissionsViewSource { get { - return _techheatersViewSource; + return _rolespermissionsViewSource; } set { - _techheatersViewSource = value; RaisePropertyChanged(nameof(TechHeatersViewSource)); + _rolespermissionsViewSource = value; RaisePropertyChanged(nameof(RolesPermissionsViewSource)); } } - private ObservableCollection _techios; + private ObservableCollection _segments; /// - /// Gets or sets the TechIos. + /// Gets or sets the Segments. /// - public ObservableCollection TechIos + public ObservableCollection Segments { get { - return _techios; + return _segments; } set { - _techios = value; RaisePropertyChanged(nameof(TechIos)); + _segments = value; RaisePropertyChanged(nameof(Segments)); } } - private ICollectionView _techiosViewSource; + private ICollectionView _segmentsViewSource; /// - /// Gets or sets the TechIos View Source. + /// Gets or sets the Segments View Source. /// - public ICollectionView TechIosViewSource + public ICollectionView SegmentsViewSource { get { - return _techiosViewSource; + return _segmentsViewSource; } set { - _techiosViewSource = value; RaisePropertyChanged(nameof(TechIosViewSource)); + _segmentsViewSource = value; RaisePropertyChanged(nameof(SegmentsViewSource)); } } - private ObservableCollection _techmonitors; + private ObservableCollection _sites; /// - /// Gets or sets the TechMonitors. + /// Gets or sets the Sites. /// - public ObservableCollection TechMonitors + public ObservableCollection Sites { get { - return _techmonitors; + return _sites; } set { - _techmonitors = value; RaisePropertyChanged(nameof(TechMonitors)); + _sites = value; RaisePropertyChanged(nameof(Sites)); } } - private ICollectionView _techmonitorsViewSource; + private ICollectionView _sitesViewSource; /// - /// Gets or sets the TechMonitors View Source. + /// Gets or sets the Sites View Source. /// - public ICollectionView TechMonitorsViewSource + public ICollectionView SitesViewSource { get { - return _techmonitorsViewSource; + return _sitesViewSource; } set { - _techmonitorsViewSource = value; RaisePropertyChanged(nameof(TechMonitorsViewSource)); + _sitesViewSource = value; RaisePropertyChanged(nameof(SitesViewSource)); } } - private ObservableCollection _techvalves; + private ObservableCollection _sitescatalogs; /// - /// Gets or sets the TechValves. + /// Gets or sets the SitesCatalogs. /// - public ObservableCollection TechValves + public ObservableCollection SitesCatalogs { get { - return _techvalves; + return _sitescatalogs; } set { - _techvalves = value; RaisePropertyChanged(nameof(TechValves)); + _sitescatalogs = value; RaisePropertyChanged(nameof(SitesCatalogs)); } } - private ICollectionView _techvalvesViewSource; + private ICollectionView _sitescatalogsViewSource; /// - /// Gets or sets the TechValves View Source. + /// Gets or sets the SitesCatalogs View Source. /// - public ICollectionView TechValvesViewSource + public ICollectionView SitesCatalogsViewSource { get { - return _techvalvesViewSource; + return _sitescatalogsViewSource; } set { - _techvalvesViewSource = value; RaisePropertyChanged(nameof(TechValvesViewSource)); + _sitescatalogsViewSource = value; RaisePropertyChanged(nameof(SitesCatalogsViewSource)); } } - private ObservableCollection _tensileresults; + private ObservableCollection _sitesrmls; /// - /// Gets or sets the TensileResults. + /// Gets or sets the SitesRmls. /// - public ObservableCollection TensileResults + public ObservableCollection SitesRmls { get { - return _tensileresults; + return _sitesrmls; } set { - _tensileresults = value; RaisePropertyChanged(nameof(TensileResults)); + _sitesrmls = value; RaisePropertyChanged(nameof(SitesRmls)); } } - private ICollectionView _tensileresultsViewSource; + private ICollectionView _sitesrmlsViewSource; /// - /// Gets or sets the TensileResults View Source. + /// Gets or sets the SitesRmls View Source. /// - public ICollectionView TensileResultsViewSource + public ICollectionView SitesRmlsViewSource { get { - return _tensileresultsViewSource; + return _sitesrmlsViewSource; } set { - _tensileresultsViewSource = value; RaisePropertyChanged(nameof(TensileResultsViewSource)); + _sitesrmlsViewSource = value; RaisePropertyChanged(nameof(SitesRmlsViewSource)); } } - private ObservableCollection _users; + private ObservableCollection _spooltypes; /// - /// Gets or sets the Users. + /// Gets or sets the SpoolTypes. /// - public ObservableCollection Users + public ObservableCollection SpoolTypes { get { - return _users; + return _spooltypes; } set { - _users = value; RaisePropertyChanged(nameof(Users)); + _spooltypes = value; RaisePropertyChanged(nameof(SpoolTypes)); } } - private ICollectionView _usersViewSource; + private ICollectionView _spooltypesViewSource; /// - /// Gets or sets the Users View Source. + /// Gets or sets the SpoolTypes View Source. /// - public ICollectionView UsersViewSource + public ICollectionView SpoolTypesViewSource { get { - return _usersViewSource; + return _spooltypesViewSource; } set { - _usersViewSource = value; RaisePropertyChanged(nameof(UsersViewSource)); + _spooltypesViewSource = value; RaisePropertyChanged(nameof(SpoolTypesViewSource)); } } - private ObservableCollection _usersroles; + private ObservableCollection _spools; /// - /// Gets or sets the UsersRoles. + /// Gets or sets the Spools. /// - public ObservableCollection UsersRoles + public ObservableCollection Spools { get { - return _usersroles; + return _spools; } set { - _usersroles = value; RaisePropertyChanged(nameof(UsersRoles)); + _spools = value; RaisePropertyChanged(nameof(Spools)); } } - private ICollectionView _usersrolesViewSource; + private ICollectionView _spoolsViewSource; /// - /// Gets or sets the UsersRoles View Source. + /// Gets or sets the Spools View Source. /// - public ICollectionView UsersRolesViewSource + public ICollectionView SpoolsViewSource { get { - return _usersrolesViewSource; + return _spoolsViewSource; } set { - _usersrolesViewSource = value; RaisePropertyChanged(nameof(UsersRolesViewSource)); + _spoolsViewSource = value; RaisePropertyChanged(nameof(SpoolsViewSource)); } } - private ObservableCollection _windingmethods; + private ObservableCollection _sysdiagrams; /// - /// Gets or sets the WindingMethods. + /// Gets or sets the Sysdiagrams. /// - public ObservableCollection WindingMethods + public ObservableCollection Sysdiagrams { get { - return _windingmethods; + return _sysdiagrams; } set { - _windingmethods = value; RaisePropertyChanged(nameof(WindingMethods)); + _sysdiagrams = value; RaisePropertyChanged(nameof(Sysdiagrams)); } } - private ICollectionView _windingmethodsViewSource; + private ICollectionView _sysdiagramsViewSource; /// - /// Gets or sets the WindingMethods View Source. + /// Gets or sets the Sysdiagrams View Source. /// - public ICollectionView WindingMethodsViewSource + public ICollectionView SysdiagramsViewSource { get { - return _windingmethodsViewSource; + return _sysdiagramsViewSource; } set { - _windingmethodsViewSource = value; RaisePropertyChanged(nameof(WindingMethodsViewSource)); + _sysdiagramsViewSource = value; RaisePropertyChanged(nameof(SysdiagramsViewSource)); } } - private ObservableCollection _yarnapplications; + private ObservableCollection _tangoupdates; /// - /// Gets or sets the YarnApplications. + /// Gets or sets the TangoUpdates. /// - public ObservableCollection YarnApplications + public ObservableCollection TangoUpdates { get { - return _yarnapplications; + return _tangoupdates; } set { - _yarnapplications = value; RaisePropertyChanged(nameof(YarnApplications)); + _tangoupdates = value; RaisePropertyChanged(nameof(TangoUpdates)); } } - private ICollectionView _yarnapplicationsViewSource; + private ICollectionView _tangoupdatesViewSource; /// - /// Gets or sets the YarnApplications View Source. + /// Gets or sets the TangoUpdates View Source. /// - public ICollectionView YarnApplicationsViewSource + public ICollectionView TangoUpdatesViewSource { get { - return _yarnapplicationsViewSource; + return _tangoupdatesViewSource; } set { - _yarnapplicationsViewSource = value; RaisePropertyChanged(nameof(YarnApplicationsViewSource)); + _tangoupdatesViewSource = value; RaisePropertyChanged(nameof(TangoUpdatesViewSource)); } } - private ObservableCollection _yarnbrands; + private ObservableCollection _tangoversions; /// - /// Gets or sets the YarnBrands. + /// Gets or sets the TangoVersions. /// - public ObservableCollection YarnBrands + public ObservableCollection TangoVersions { get { - return _yarnbrands; + return _tangoversions; } set { - _yarnbrands = value; RaisePropertyChanged(nameof(YarnBrands)); + _tangoversions = value; RaisePropertyChanged(nameof(TangoVersions)); } } - private ICollectionView _yarnbrandsViewSource; + private ICollectionView _tangoversionsViewSource; /// - /// Gets or sets the YarnBrands View Source. + /// Gets or sets the TangoVersions View Source. /// - public ICollectionView YarnBrandsViewSource + public ICollectionView TangoVersionsViewSource { get { - return _yarnbrandsViewSource; + return _tangoversionsViewSource; } set { - _yarnbrandsViewSource = value; RaisePropertyChanged(nameof(YarnBrandsViewSource)); + _tangoversionsViewSource = value; RaisePropertyChanged(nameof(TangoVersionsViewSource)); } } - private ObservableCollection _yarnfamilies; + private ObservableCollection _techcontrollers; /// - /// Gets or sets the YarnFamilies. + /// Gets or sets the TechControllers. /// - public ObservableCollection YarnFamilies + public ObservableCollection TechControllers { get { - return _yarnfamilies; + return _techcontrollers; } set { - _yarnfamilies = value; RaisePropertyChanged(nameof(YarnFamilies)); + _techcontrollers = value; RaisePropertyChanged(nameof(TechControllers)); } } - private ICollectionView _yarnfamiliesViewSource; + private ICollectionView _techcontrollersViewSource; /// - /// Gets or sets the YarnFamilies View Source. + /// Gets or sets the TechControllers View Source. /// - public ICollectionView YarnFamiliesViewSource + public ICollectionView TechControllersViewSource { get { - return _yarnfamiliesViewSource; + return _techcontrollersViewSource; } set { - _yarnfamiliesViewSource = value; RaisePropertyChanged(nameof(YarnFamiliesViewSource)); + _techcontrollersViewSource = value; RaisePropertyChanged(nameof(TechControllersViewSource)); } } - private ObservableCollection _yarnglosslevels; + private ObservableCollection _techdispensers; /// - /// Gets or sets the YarnGlossLevels. + /// Gets or sets the TechDispensers. /// - public ObservableCollection YarnGlossLevels + public ObservableCollection TechDispensers { get { - return _yarnglosslevels; + return _techdispensers; } set { - _yarnglosslevels = value; RaisePropertyChanged(nameof(YarnGlossLevels)); + _techdispensers = value; RaisePropertyChanged(nameof(TechDispensers)); } } - private ICollectionView _yarnglosslevelsViewSource; + private ICollectionView _techdispensersViewSource; /// - /// Gets or sets the YarnGlossLevels View Source. + /// Gets or sets the TechDispensers View Source. /// - public ICollectionView YarnGlossLevelsViewSource + public ICollectionView TechDispensersViewSource { get { - return _yarnglosslevelsViewSource; + return _techdispensersViewSource; } set { - _yarnglosslevelsViewSource = value; RaisePropertyChanged(nameof(YarnGlossLevelsViewSource)); + _techdispensersViewSource = value; RaisePropertyChanged(nameof(TechDispensersViewSource)); } } - private ObservableCollection _yarngroups; + private ObservableCollection _techheaters; /// - /// Gets or sets the YarnGroups. + /// Gets or sets the TechHeaters. /// - public ObservableCollection YarnGroups + public ObservableCollection TechHeaters { get { - return _yarngroups; + return _techheaters; } set { - _yarngroups = value; RaisePropertyChanged(nameof(YarnGroups)); + _techheaters = value; RaisePropertyChanged(nameof(TechHeaters)); } } - private ICollectionView _yarngroupsViewSource; + private ICollectionView _techheatersViewSource; /// - /// Gets or sets the YarnGroups View Source. + /// Gets or sets the TechHeaters View Source. /// - public ICollectionView YarnGroupsViewSource + public ICollectionView TechHeatersViewSource { get { - return _yarngroupsViewSource; + return _techheatersViewSource; } set { - _yarngroupsViewSource = value; RaisePropertyChanged(nameof(YarnGroupsViewSource)); + _techheatersViewSource = value; RaisePropertyChanged(nameof(TechHeatersViewSource)); } } - private ObservableCollection _yarnindustrysectors; + private ObservableCollection _techios; /// - /// Gets or sets the YarnIndustrysectors. + /// Gets or sets the TechIos. /// - public ObservableCollection YarnIndustrysectors + public ObservableCollection TechIos { get { - return _yarnindustrysectors; + return _techios; } set { - _yarnindustrysectors = value; RaisePropertyChanged(nameof(YarnIndustrysectors)); + _techios = value; RaisePropertyChanged(nameof(TechIos)); } } - private ICollectionView _yarnindustrysectorsViewSource; + private ICollectionView _techiosViewSource; /// - /// Gets or sets the YarnIndustrysectors View Source. + /// Gets or sets the TechIos View Source. /// - public ICollectionView YarnIndustrysectorsViewSource + public ICollectionView TechIosViewSource { get { - return _yarnindustrysectorsViewSource; + return _techiosViewSource; } set { - _yarnindustrysectorsViewSource = value; RaisePropertyChanged(nameof(YarnIndustrysectorsViewSource)); + _techiosViewSource = value; RaisePropertyChanged(nameof(TechIosViewSource)); } } - private ObservableCollection _yarnmanufacturers; + private ObservableCollection _techmonitors; /// - /// Gets or sets the YarnManufacturers. + /// Gets or sets the TechMonitors. /// - public ObservableCollection YarnManufacturers + public ObservableCollection TechMonitors { get { - return _yarnmanufacturers; + return _techmonitors; } set { - _yarnmanufacturers = value; RaisePropertyChanged(nameof(YarnManufacturers)); + _techmonitors = value; RaisePropertyChanged(nameof(TechMonitors)); } } - private ICollectionView _yarnmanufacturersViewSource; + private ICollectionView _techmonitorsViewSource; /// - /// Gets or sets the YarnManufacturers View Source. + /// Gets or sets the TechMonitors View Source. /// - public ICollectionView YarnManufacturersViewSource + public ICollectionView TechMonitorsViewSource { get { - return _yarnmanufacturersViewSource; + return _techmonitorsViewSource; } set { - _yarnmanufacturersViewSource = value; RaisePropertyChanged(nameof(YarnManufacturersViewSource)); + _techmonitorsViewSource = value; RaisePropertyChanged(nameof(TechMonitorsViewSource)); } } - private ObservableCollection _yarnsubfamilies; + private ObservableCollection _techvalves; /// - /// Gets or sets the YarnSubFamilies. + /// Gets or sets the TechValves. /// - public ObservableCollection YarnSubFamilies + public ObservableCollection TechValves { get { - return _yarnsubfamilies; + return _techvalves; } set { - _yarnsubfamilies = value; RaisePropertyChanged(nameof(YarnSubFamilies)); + _techvalves = value; RaisePropertyChanged(nameof(TechValves)); } } - private ICollectionView _yarnsubfamiliesViewSource; + private ICollectionView _techvalvesViewSource; /// - /// Gets or sets the YarnSubFamilies View Source. + /// Gets or sets the TechValves View Source. /// - public ICollectionView YarnSubFamiliesViewSource + public ICollectionView TechValvesViewSource { get { - return _yarnsubfamiliesViewSource; + return _techvalvesViewSource; } set { - _yarnsubfamiliesViewSource = value; RaisePropertyChanged(nameof(YarnSubFamiliesViewSource)); + _techvalvesViewSource = value; RaisePropertyChanged(nameof(TechValvesViewSource)); } } - private ObservableCollection _yarntexturings; + private ObservableCollection _users; /// - /// Gets or sets the YarnTexturings. + /// Gets or sets the Users. /// - public ObservableCollection YarnTexturings + public ObservableCollection Users { get { - return _yarntexturings; + return _users; } set { - _yarntexturings = value; RaisePropertyChanged(nameof(YarnTexturings)); + _users = value; RaisePropertyChanged(nameof(Users)); } } - private ICollectionView _yarntexturingsViewSource; + private ICollectionView _usersViewSource; /// - /// Gets or sets the YarnTexturings View Source. + /// Gets or sets the Users View Source. /// - public ICollectionView YarnTexturingsViewSource + public ICollectionView UsersViewSource { get { - return _yarntexturingsViewSource; + return _usersViewSource; } set { - _yarntexturingsViewSource = value; RaisePropertyChanged(nameof(YarnTexturingsViewSource)); + _usersViewSource = value; RaisePropertyChanged(nameof(UsersViewSource)); } } - private ObservableCollection _yarntypes; + private ObservableCollection _usersroles; /// - /// Gets or sets the YarnTypes. + /// Gets or sets the UsersRoles. /// - public ObservableCollection YarnTypes + public ObservableCollection UsersRoles { get { - return _yarntypes; + return _usersroles; } set { - _yarntypes = value; RaisePropertyChanged(nameof(YarnTypes)); + _usersroles = value; RaisePropertyChanged(nameof(UsersRoles)); } } - private ICollectionView _yarntypesViewSource; + private ICollectionView _usersrolesViewSource; /// - /// Gets or sets the YarnTypes View Source. + /// Gets or sets the UsersRoles View Source. /// - public ICollectionView YarnTypesViewSource + public ICollectionView UsersRolesViewSource { get { - return _yarntypesViewSource; + return _usersrolesViewSource; } set { - _yarntypesViewSource = value; RaisePropertyChanged(nameof(YarnTypesViewSource)); + _usersrolesViewSource = value; RaisePropertyChanged(nameof(UsersRolesViewSource)); } } - private ObservableCollection _yarnwhiteshades; + private ObservableCollection _windingmethods; /// - /// Gets or sets the YarnWhiteShades. + /// Gets or sets the WindingMethods. /// - public ObservableCollection YarnWhiteShades + public ObservableCollection WindingMethods { get { - return _yarnwhiteshades; + return _windingmethods; } set { - _yarnwhiteshades = value; RaisePropertyChanged(nameof(YarnWhiteShades)); + _windingmethods = value; RaisePropertyChanged(nameof(WindingMethods)); } } - private ICollectionView _yarnwhiteshadesViewSource; + private ICollectionView _windingmethodsViewSource; /// - /// Gets or sets the YarnWhiteShades View Source. + /// Gets or sets the WindingMethods View Source. /// - public ICollectionView YarnWhiteShadesViewSource + public ICollectionView WindingMethodsViewSource { get { - return _yarnwhiteshadesViewSource; + return _windingmethodsViewSource; } set { - _yarnwhiteshadesViewSource = value; RaisePropertyChanged(nameof(YarnWhiteShadesViewSource)); + _windingmethodsViewSource = value; RaisePropertyChanged(nameof(WindingMethodsViewSource)); } } @@ -3877,6 +3913,42 @@ namespace Tango.BL SyncConfigurationsViewSource = CreateCollectionView(SyncConfigurations); + ColorProcessDataViewSource = CreateCollectionView(ColorProcessData); + + ColorProcessFactorsViewSource = CreateCollectionView(ColorProcessFactors); + + ColorProcessParametersViewSource = CreateCollectionView(ColorProcessParameters); + + RmlExtensionTestResultsViewSource = CreateCollectionView(RmlExtensionTestResults); + + RmlsExtensionsViewSource = CreateCollectionView(RmlsExtensions); + + RubbingResultsViewSource = CreateCollectionView(RubbingResults); + + TensileResultsViewSource = CreateCollectionView(TensileResults); + + YarnApplicationsViewSource = CreateCollectionView(YarnApplications); + + YarnBrandsViewSource = CreateCollectionView(YarnBrands); + + YarnFamiliesViewSource = CreateCollectionView(YarnFamilies); + + YarnGlossLevelsViewSource = CreateCollectionView(YarnGlossLevels); + + YarnGroupsViewSource = CreateCollectionView(YarnGroups); + + YarnIndustrysectorsViewSource = CreateCollectionView(YarnIndustrysectors); + + YarnManufacturersViewSource = CreateCollectionView(YarnManufacturers); + + YarnSubFamiliesViewSource = CreateCollectionView(YarnSubFamilies); + + YarnTexturingsViewSource = CreateCollectionView(YarnTexturings); + + YarnTypesViewSource = CreateCollectionView(YarnTypes); + + YarnWhiteShadesViewSource = CreateCollectionView(YarnWhiteShades); + ActionLogsViewSource = CreateCollectionView(ActionLogs); AddressesViewSource = CreateCollectionView(Addresses); @@ -3909,11 +3981,7 @@ namespace Tango.BL ColorCatalogsItemsRecipesViewSource = CreateCollectionView(ColorCatalogsItemsRecipes); - ColorProcessDataViewSource = CreateCollectionView(ColorProcessData); - - ColorProcessFactorsViewSource = CreateCollectionView(ColorProcessFactors); - - ColorProcessParametersViewSource = CreateCollectionView(ColorProcessParameters); + ColorProcessInkUptakeViewSource = CreateCollectionView(ColorProcessInkUptake); ColorSpacesViewSource = CreateCollectionView(ColorSpaces); @@ -4015,20 +4083,14 @@ namespace Tango.BL PublishedProcedureProjectsVersionsViewSource = CreateCollectionView(PublishedProcedureProjectsVersions); - RmlExtensionTestResultsViewSource = CreateCollectionView(RmlExtensionTestResults); - RmlsViewSource = CreateCollectionView(Rmls); - RmlsExtensionsViewSource = CreateCollectionView(RmlsExtensions); - RmlsSpoolsViewSource = CreateCollectionView(RmlsSpools); RolesViewSource = CreateCollectionView(Roles); RolesPermissionsViewSource = CreateCollectionView(RolesPermissions); - RubbingResultsViewSource = CreateCollectionView(RubbingResults); - SegmentsViewSource = CreateCollectionView(Segments); SitesViewSource = CreateCollectionView(Sites); @@ -4059,36 +4121,12 @@ namespace Tango.BL TechValvesViewSource = CreateCollectionView(TechValves); - TensileResultsViewSource = CreateCollectionView(TensileResults); - UsersViewSource = CreateCollectionView(Users); UsersRolesViewSource = CreateCollectionView(UsersRoles); WindingMethodsViewSource = CreateCollectionView(WindingMethods); - YarnApplicationsViewSource = CreateCollectionView(YarnApplications); - - YarnBrandsViewSource = CreateCollectionView(YarnBrands); - - YarnFamiliesViewSource = CreateCollectionView(YarnFamilies); - - YarnGlossLevelsViewSource = CreateCollectionView(YarnGlossLevels); - - YarnGroupsViewSource = CreateCollectionView(YarnGroups); - - YarnIndustrysectorsViewSource = CreateCollectionView(YarnIndustrysectors); - - YarnManufacturersViewSource = CreateCollectionView(YarnManufacturers); - - YarnSubFamiliesViewSource = CreateCollectionView(YarnSubFamilies); - - YarnTexturingsViewSource = CreateCollectionView(YarnTexturings); - - YarnTypesViewSource = CreateCollectionView(YarnTypes); - - YarnWhiteShadesViewSource = CreateCollectionView(YarnWhiteShades); - } } } diff --git a/Software/Visual_Studio/Tango.BL/ObservablesStaticCollectionsExtension.cs b/Software/Visual_Studio/Tango.BL/ObservablesStaticCollectionsExtension.cs index 080a6fa92..5536d970a 100644 --- a/Software/Visual_Studio/Tango.BL/ObservablesStaticCollectionsExtension.cs +++ b/Software/Visual_Studio/Tango.BL/ObservablesStaticCollectionsExtension.cs @@ -53,3818 +53,3854 @@ namespace Tango.BL } - private ObservableCollection _actionlogs; + private ObservableCollection _colorprocessdata; /// - /// Gets or sets the ActionLogs. + /// Gets or sets the ColorProcessData. /// - public ObservableCollection ActionLogs + public ObservableCollection ColorProcessData { get { - return _actionlogs; + return _colorprocessdata; } set { - _actionlogs = value; RaisePropertyChanged(nameof(ActionLogs)); + _colorprocessdata = value; RaisePropertyChanged(nameof(ColorProcessData)); } } - private ICollectionView _actionlogsViewSource; + private ICollectionView _colorprocessdataViewSource; /// - /// Gets or sets the ActionLogs View Source. + /// Gets or sets the ColorProcessData View Source. /// - public ICollectionView ActionLogsViewSource + public ICollectionView ColorProcessDataViewSource { get { - return _actionlogsViewSource; + return _colorprocessdataViewSource; } set { - _actionlogsViewSource = value; RaisePropertyChanged(nameof(ActionLogsViewSource)); + _colorprocessdataViewSource = value; RaisePropertyChanged(nameof(ColorProcessDataViewSource)); } } - private ObservableCollection
_addresses; + private ObservableCollection _colorprocessfactors; /// - /// Gets or sets the Addresses. + /// Gets or sets the ColorProcessFactors. /// - public ObservableCollection
Addresses + public ObservableCollection ColorProcessFactors { get { - return _addresses; + return _colorprocessfactors; } set { - _addresses = value; RaisePropertyChanged(nameof(Addresses)); + _colorprocessfactors = value; RaisePropertyChanged(nameof(ColorProcessFactors)); } } - private ICollectionView _addressesViewSource; + private ICollectionView _colorprocessfactorsViewSource; /// - /// Gets or sets the Addresses View Source. + /// Gets or sets the ColorProcessFactors View Source. /// - public ICollectionView AddressesViewSource + public ICollectionView ColorProcessFactorsViewSource { get { - return _addressesViewSource; + return _colorprocessfactorsViewSource; } set { - _addressesViewSource = value; RaisePropertyChanged(nameof(AddressesViewSource)); + _colorprocessfactorsViewSource = value; RaisePropertyChanged(nameof(ColorProcessFactorsViewSource)); } } - private ObservableCollection _applicationdisplaypanelversions; + private ObservableCollection _colorprocessparameters; /// - /// Gets or sets the ApplicationDisplayPanelVersions. + /// Gets or sets the ColorProcessParameters. /// - public ObservableCollection ApplicationDisplayPanelVersions + public ObservableCollection ColorProcessParameters { get { - return _applicationdisplaypanelversions; + return _colorprocessparameters; } set { - _applicationdisplaypanelversions = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersions)); + _colorprocessparameters = value; RaisePropertyChanged(nameof(ColorProcessParameters)); } } - private ICollectionView _applicationdisplaypanelversionsViewSource; + private ICollectionView _colorprocessparametersViewSource; /// - /// Gets or sets the ApplicationDisplayPanelVersions View Source. + /// Gets or sets the ColorProcessParameters View Source. /// - public ICollectionView ApplicationDisplayPanelVersionsViewSource + public ICollectionView ColorProcessParametersViewSource { get { - return _applicationdisplaypanelversionsViewSource; + return _colorprocessparametersViewSource; } set { - _applicationdisplaypanelversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersionsViewSource)); + _colorprocessparametersViewSource = value; RaisePropertyChanged(nameof(ColorProcessParametersViewSource)); } } - private ObservableCollection _applicationfirmwareversions; + private ObservableCollection _rmlextensiontestresults; /// - /// Gets or sets the ApplicationFirmwareVersions. + /// Gets or sets the RmlExtensionTestResults. /// - public ObservableCollection ApplicationFirmwareVersions + public ObservableCollection RmlExtensionTestResults { get { - return _applicationfirmwareversions; + return _rmlextensiontestresults; } set { - _applicationfirmwareversions = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersions)); + _rmlextensiontestresults = value; RaisePropertyChanged(nameof(RmlExtensionTestResults)); } } - private ICollectionView _applicationfirmwareversionsViewSource; + private ICollectionView _rmlextensiontestresultsViewSource; /// - /// Gets or sets the ApplicationFirmwareVersions View Source. + /// Gets or sets the RmlExtensionTestResults View Source. /// - public ICollectionView ApplicationFirmwareVersionsViewSource + public ICollectionView RmlExtensionTestResultsViewSource { get { - return _applicationfirmwareversionsViewSource; + return _rmlextensiontestresultsViewSource; } set { - _applicationfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersionsViewSource)); + _rmlextensiontestresultsViewSource = value; RaisePropertyChanged(nameof(RmlExtensionTestResultsViewSource)); } } - private ObservableCollection _applicationosversions; + private ObservableCollection _rmlsextensions; /// - /// Gets or sets the ApplicationOsVersions. + /// Gets or sets the RmlsExtensions. /// - public ObservableCollection ApplicationOsVersions + public ObservableCollection RmlsExtensions { get { - return _applicationosversions; + return _rmlsextensions; } set { - _applicationosversions = value; RaisePropertyChanged(nameof(ApplicationOsVersions)); + _rmlsextensions = value; RaisePropertyChanged(nameof(RmlsExtensions)); } } - private ICollectionView _applicationosversionsViewSource; + private ICollectionView _rmlsextensionsViewSource; /// - /// Gets or sets the ApplicationOsVersions View Source. + /// Gets or sets the RmlsExtensions View Source. /// - public ICollectionView ApplicationOsVersionsViewSource + public ICollectionView RmlsExtensionsViewSource { get { - return _applicationosversionsViewSource; + return _rmlsextensionsViewSource; } set { - _applicationosversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationOsVersionsViewSource)); + _rmlsextensionsViewSource = value; RaisePropertyChanged(nameof(RmlsExtensionsViewSource)); } } - private ObservableCollection _bittypes; + private ObservableCollection _rubbingresults; /// - /// Gets or sets the BitTypes. + /// Gets or sets the RubbingResults. /// - public ObservableCollection BitTypes + public ObservableCollection RubbingResults { get { - return _bittypes; + return _rubbingresults; } set { - _bittypes = value; RaisePropertyChanged(nameof(BitTypes)); + _rubbingresults = value; RaisePropertyChanged(nameof(RubbingResults)); } } - private ICollectionView _bittypesViewSource; + private ICollectionView _rubbingresultsViewSource; /// - /// Gets or sets the BitTypes View Source. + /// Gets or sets the RubbingResults View Source. /// - public ICollectionView BitTypesViewSource + public ICollectionView RubbingResultsViewSource { get { - return _bittypesViewSource; + return _rubbingresultsViewSource; } set { - _bittypesViewSource = value; RaisePropertyChanged(nameof(BitTypesViewSource)); + _rubbingresultsViewSource = value; RaisePropertyChanged(nameof(RubbingResultsViewSource)); } } - private ObservableCollection _brushstops; + private ObservableCollection _tensileresults; /// - /// Gets or sets the BrushStops. + /// Gets or sets the TensileResults. /// - public ObservableCollection BrushStops + public ObservableCollection TensileResults { get { - return _brushstops; + return _tensileresults; } set { - _brushstops = value; RaisePropertyChanged(nameof(BrushStops)); + _tensileresults = value; RaisePropertyChanged(nameof(TensileResults)); } } - private ICollectionView _brushstopsViewSource; + private ICollectionView _tensileresultsViewSource; /// - /// Gets or sets the BrushStops View Source. + /// Gets or sets the TensileResults View Source. /// - public ICollectionView BrushStopsViewSource + public ICollectionView TensileResultsViewSource { get { - return _brushstopsViewSource; + return _tensileresultsViewSource; } set { - _brushstopsViewSource = value; RaisePropertyChanged(nameof(BrushStopsViewSource)); + _tensileresultsViewSource = value; RaisePropertyChanged(nameof(TensileResultsViewSource)); } } - private ObservableCollection _btsrapplicationtypes; + private ObservableCollection _yarnapplications; /// - /// Gets or sets the BtsrApplicationTypes. + /// Gets or sets the YarnApplications. /// - public ObservableCollection BtsrApplicationTypes + public ObservableCollection YarnApplications { get { - return _btsrapplicationtypes; + return _yarnapplications; } set { - _btsrapplicationtypes = value; RaisePropertyChanged(nameof(BtsrApplicationTypes)); + _yarnapplications = value; RaisePropertyChanged(nameof(YarnApplications)); } } - private ICollectionView _btsrapplicationtypesViewSource; + private ICollectionView _yarnapplicationsViewSource; /// - /// Gets or sets the BtsrApplicationTypes View Source. + /// Gets or sets the YarnApplications View Source. /// - public ICollectionView BtsrApplicationTypesViewSource + public ICollectionView YarnApplicationsViewSource { get { - return _btsrapplicationtypesViewSource; + return _yarnapplicationsViewSource; } set { - _btsrapplicationtypesViewSource = value; RaisePropertyChanged(nameof(BtsrApplicationTypesViewSource)); + _yarnapplicationsViewSource = value; RaisePropertyChanged(nameof(YarnApplicationsViewSource)); } } - private ObservableCollection _btsryarntypes; + private ObservableCollection _yarnbrands; /// - /// Gets or sets the BtsrYarnTypes. + /// Gets or sets the YarnBrands. /// - public ObservableCollection BtsrYarnTypes + public ObservableCollection YarnBrands { get { - return _btsryarntypes; + return _yarnbrands; } set { - _btsryarntypes = value; RaisePropertyChanged(nameof(BtsrYarnTypes)); + _yarnbrands = value; RaisePropertyChanged(nameof(YarnBrands)); } } - private ICollectionView _btsryarntypesViewSource; + private ICollectionView _yarnbrandsViewSource; /// - /// Gets or sets the BtsrYarnTypes View Source. + /// Gets or sets the YarnBrands View Source. /// - public ICollectionView BtsrYarnTypesViewSource + public ICollectionView YarnBrandsViewSource { get { - return _btsryarntypesViewSource; + return _yarnbrandsViewSource; } set { - _btsryarntypesViewSource = value; RaisePropertyChanged(nameof(BtsrYarnTypesViewSource)); + _yarnbrandsViewSource = value; RaisePropertyChanged(nameof(YarnBrandsViewSource)); } } - private ObservableCollection _cartridgetypes; + private ObservableCollection _yarnfamilies; /// - /// Gets or sets the CartridgeTypes. + /// Gets or sets the YarnFamilies. /// - public ObservableCollection CartridgeTypes + public ObservableCollection YarnFamilies { get { - return _cartridgetypes; + return _yarnfamilies; } set { - _cartridgetypes = value; RaisePropertyChanged(nameof(CartridgeTypes)); + _yarnfamilies = value; RaisePropertyChanged(nameof(YarnFamilies)); } } - private ICollectionView _cartridgetypesViewSource; + private ICollectionView _yarnfamiliesViewSource; /// - /// Gets or sets the CartridgeTypes View Source. + /// Gets or sets the YarnFamilies View Source. /// - public ICollectionView CartridgeTypesViewSource + public ICollectionView YarnFamiliesViewSource { get { - return _cartridgetypesViewSource; + return _yarnfamiliesViewSource; } set { - _cartridgetypesViewSource = value; RaisePropertyChanged(nameof(CartridgeTypesViewSource)); + _yarnfamiliesViewSource = value; RaisePropertyChanged(nameof(YarnFamiliesViewSource)); } } - private ObservableCollection _cats; + private ObservableCollection _yarnglosslevels; /// - /// Gets or sets the Cats. + /// Gets or sets the YarnGlossLevels. /// - public ObservableCollection Cats + public ObservableCollection YarnGlossLevels { get { - return _cats; + return _yarnglosslevels; } set { - _cats = value; RaisePropertyChanged(nameof(Cats)); + _yarnglosslevels = value; RaisePropertyChanged(nameof(YarnGlossLevels)); } } - private ICollectionView _catsViewSource; + private ICollectionView _yarnglosslevelsViewSource; /// - /// Gets or sets the Cats View Source. + /// Gets or sets the YarnGlossLevels View Source. /// - public ICollectionView CatsViewSource + public ICollectionView YarnGlossLevelsViewSource { get { - return _catsViewSource; + return _yarnglosslevelsViewSource; } set { - _catsViewSource = value; RaisePropertyChanged(nameof(CatsViewSource)); + _yarnglosslevelsViewSource = value; RaisePropertyChanged(nameof(YarnGlossLevelsViewSource)); } } - private ObservableCollection _ccts; + private ObservableCollection _yarngroups; /// - /// Gets or sets the Ccts. + /// Gets or sets the YarnGroups. /// - public ObservableCollection Ccts + public ObservableCollection YarnGroups { get { - return _ccts; + return _yarngroups; } set { - _ccts = value; RaisePropertyChanged(nameof(Ccts)); + _yarngroups = value; RaisePropertyChanged(nameof(YarnGroups)); } } - private ICollectionView _cctsViewSource; + private ICollectionView _yarngroupsViewSource; /// - /// Gets or sets the Ccts View Source. + /// Gets or sets the YarnGroups View Source. /// - public ICollectionView CctsViewSource + public ICollectionView YarnGroupsViewSource { get { - return _cctsViewSource; + return _yarngroupsViewSource; } set { - _cctsViewSource = value; RaisePropertyChanged(nameof(CctsViewSource)); + _yarngroupsViewSource = value; RaisePropertyChanged(nameof(YarnGroupsViewSource)); } } - private ObservableCollection _colorcatalogs; + private ObservableCollection _yarnindustrysectors; /// - /// Gets or sets the ColorCatalogs. + /// Gets or sets the YarnIndustrysectors. /// - public ObservableCollection ColorCatalogs + public ObservableCollection YarnIndustrysectors { get { - return _colorcatalogs; + return _yarnindustrysectors; } set { - _colorcatalogs = value; RaisePropertyChanged(nameof(ColorCatalogs)); + _yarnindustrysectors = value; RaisePropertyChanged(nameof(YarnIndustrysectors)); } } - private ICollectionView _colorcatalogsViewSource; + private ICollectionView _yarnindustrysectorsViewSource; /// - /// Gets or sets the ColorCatalogs View Source. + /// Gets or sets the YarnIndustrysectors View Source. /// - public ICollectionView ColorCatalogsViewSource + public ICollectionView YarnIndustrysectorsViewSource { get { - return _colorcatalogsViewSource; + return _yarnindustrysectorsViewSource; } set { - _colorcatalogsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsViewSource)); + _yarnindustrysectorsViewSource = value; RaisePropertyChanged(nameof(YarnIndustrysectorsViewSource)); } } - private ObservableCollection _colorcatalogsgroups; + private ObservableCollection _yarnmanufacturers; /// - /// Gets or sets the ColorCatalogsGroups. + /// Gets or sets the YarnManufacturers. /// - public ObservableCollection ColorCatalogsGroups + public ObservableCollection YarnManufacturers { get { - return _colorcatalogsgroups; + return _yarnmanufacturers; } set { - _colorcatalogsgroups = value; RaisePropertyChanged(nameof(ColorCatalogsGroups)); + _yarnmanufacturers = value; RaisePropertyChanged(nameof(YarnManufacturers)); } } - private ICollectionView _colorcatalogsgroupsViewSource; + private ICollectionView _yarnmanufacturersViewSource; /// - /// Gets or sets the ColorCatalogsGroups View Source. + /// Gets or sets the YarnManufacturers View Source. /// - public ICollectionView ColorCatalogsGroupsViewSource + public ICollectionView YarnManufacturersViewSource { get { - return _colorcatalogsgroupsViewSource; + return _yarnmanufacturersViewSource; } set { - _colorcatalogsgroupsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsGroupsViewSource)); + _yarnmanufacturersViewSource = value; RaisePropertyChanged(nameof(YarnManufacturersViewSource)); } } - private ObservableCollection _colorcatalogsitems; + private ObservableCollection _yarnsubfamilies; /// - /// Gets or sets the ColorCatalogsItems. + /// Gets or sets the YarnSubFamilies. /// - public ObservableCollection ColorCatalogsItems + public ObservableCollection YarnSubFamilies { get { - return _colorcatalogsitems; + return _yarnsubfamilies; } set { - _colorcatalogsitems = value; RaisePropertyChanged(nameof(ColorCatalogsItems)); + _yarnsubfamilies = value; RaisePropertyChanged(nameof(YarnSubFamilies)); } } - private ICollectionView _colorcatalogsitemsViewSource; + private ICollectionView _yarnsubfamiliesViewSource; /// - /// Gets or sets the ColorCatalogsItems View Source. + /// Gets or sets the YarnSubFamilies View Source. /// - public ICollectionView ColorCatalogsItemsViewSource + public ICollectionView YarnSubFamiliesViewSource { get { - return _colorcatalogsitemsViewSource; + return _yarnsubfamiliesViewSource; } set { - _colorcatalogsitemsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsViewSource)); + _yarnsubfamiliesViewSource = value; RaisePropertyChanged(nameof(YarnSubFamiliesViewSource)); } } - private ObservableCollection _colorcatalogsitemsrecipes; + private ObservableCollection _yarntexturings; /// - /// Gets or sets the ColorCatalogsItemsRecipes. + /// Gets or sets the YarnTexturings. /// - public ObservableCollection ColorCatalogsItemsRecipes + public ObservableCollection YarnTexturings { get { - return _colorcatalogsitemsrecipes; + return _yarntexturings; } set { - _colorcatalogsitemsrecipes = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipes)); + _yarntexturings = value; RaisePropertyChanged(nameof(YarnTexturings)); } } - private ICollectionView _colorcatalogsitemsrecipesViewSource; + private ICollectionView _yarntexturingsViewSource; /// - /// Gets or sets the ColorCatalogsItemsRecipes View Source. + /// Gets or sets the YarnTexturings View Source. /// - public ICollectionView ColorCatalogsItemsRecipesViewSource + public ICollectionView YarnTexturingsViewSource { get { - return _colorcatalogsitemsrecipesViewSource; + return _yarntexturingsViewSource; } set { - _colorcatalogsitemsrecipesViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipesViewSource)); + _yarntexturingsViewSource = value; RaisePropertyChanged(nameof(YarnTexturingsViewSource)); } } - private ObservableCollection _colorprocessdata; + private ObservableCollection _yarntypes; /// - /// Gets or sets the ColorProcessData. + /// Gets or sets the YarnTypes. /// - public ObservableCollection ColorProcessData + public ObservableCollection YarnTypes { get { - return _colorprocessdata; + return _yarntypes; } set { - _colorprocessdata = value; RaisePropertyChanged(nameof(ColorProcessData)); + _yarntypes = value; RaisePropertyChanged(nameof(YarnTypes)); } } - private ICollectionView _colorprocessdataViewSource; + private ICollectionView _yarntypesViewSource; /// - /// Gets or sets the ColorProcessData View Source. + /// Gets or sets the YarnTypes View Source. /// - public ICollectionView ColorProcessDataViewSource + public ICollectionView YarnTypesViewSource { get { - return _colorprocessdataViewSource; + return _yarntypesViewSource; } set { - _colorprocessdataViewSource = value; RaisePropertyChanged(nameof(ColorProcessDataViewSource)); + _yarntypesViewSource = value; RaisePropertyChanged(nameof(YarnTypesViewSource)); } } - private ObservableCollection _colorprocessfactors; + private ObservableCollection _yarnwhiteshades; /// - /// Gets or sets the ColorProcessFactors. + /// Gets or sets the YarnWhiteShades. /// - public ObservableCollection ColorProcessFactors + public ObservableCollection YarnWhiteShades { get { - return _colorprocessfactors; + return _yarnwhiteshades; } set { - _colorprocessfactors = value; RaisePropertyChanged(nameof(ColorProcessFactors)); + _yarnwhiteshades = value; RaisePropertyChanged(nameof(YarnWhiteShades)); } } - private ICollectionView _colorprocessfactorsViewSource; + private ICollectionView _yarnwhiteshadesViewSource; /// - /// Gets or sets the ColorProcessFactors View Source. + /// Gets or sets the YarnWhiteShades View Source. /// - public ICollectionView ColorProcessFactorsViewSource + public ICollectionView YarnWhiteShadesViewSource { get { - return _colorprocessfactorsViewSource; + return _yarnwhiteshadesViewSource; } set { - _colorprocessfactorsViewSource = value; RaisePropertyChanged(nameof(ColorProcessFactorsViewSource)); + _yarnwhiteshadesViewSource = value; RaisePropertyChanged(nameof(YarnWhiteShadesViewSource)); } } - private ObservableCollection _colorprocessparameters; + private ObservableCollection _actionlogs; /// - /// Gets or sets the ColorProcessParameters. + /// Gets or sets the ActionLogs. /// - public ObservableCollection ColorProcessParameters + public ObservableCollection ActionLogs { get { - return _colorprocessparameters; + return _actionlogs; } set { - _colorprocessparameters = value; RaisePropertyChanged(nameof(ColorProcessParameters)); + _actionlogs = value; RaisePropertyChanged(nameof(ActionLogs)); } } - private ICollectionView _colorprocessparametersViewSource; + private ICollectionView _actionlogsViewSource; /// - /// Gets or sets the ColorProcessParameters View Source. + /// Gets or sets the ActionLogs View Source. /// - public ICollectionView ColorProcessParametersViewSource + public ICollectionView ActionLogsViewSource { get { - return _colorprocessparametersViewSource; + return _actionlogsViewSource; } set { - _colorprocessparametersViewSource = value; RaisePropertyChanged(nameof(ColorProcessParametersViewSource)); + _actionlogsViewSource = value; RaisePropertyChanged(nameof(ActionLogsViewSource)); } } - private ObservableCollection _colorspaces; + private ObservableCollection
_addresses; /// - /// Gets or sets the ColorSpaces. + /// Gets or sets the Addresses. /// - public ObservableCollection ColorSpaces + public ObservableCollection
Addresses { get { - return _colorspaces; + return _addresses; } set { - _colorspaces = value; RaisePropertyChanged(nameof(ColorSpaces)); + _addresses = value; RaisePropertyChanged(nameof(Addresses)); + } + + } + + private ICollectionView _addressesViewSource; + /// + /// Gets or sets the Addresses View Source. + /// + public ICollectionView AddressesViewSource + { + get + { + return _addressesViewSource; + } + + set + { + _addressesViewSource = value; RaisePropertyChanged(nameof(AddressesViewSource)); + } + + } + + private ObservableCollection _applicationdisplaypanelversions; + /// + /// Gets or sets the ApplicationDisplayPanelVersions. + /// + public ObservableCollection ApplicationDisplayPanelVersions + { + get + { + return _applicationdisplaypanelversions; + } + + set + { + _applicationdisplaypanelversions = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersions)); } } - private ICollectionView _colorspacesViewSource; + private ICollectionView _applicationdisplaypanelversionsViewSource; /// - /// Gets or sets the ColorSpaces View Source. + /// Gets or sets the ApplicationDisplayPanelVersions View Source. /// - public ICollectionView ColorSpacesViewSource + public ICollectionView ApplicationDisplayPanelVersionsViewSource { get { - return _colorspacesViewSource; + return _applicationdisplaypanelversionsViewSource; } set { - _colorspacesViewSource = value; RaisePropertyChanged(nameof(ColorSpacesViewSource)); + _applicationdisplaypanelversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersionsViewSource)); } } - private ObservableCollection _configurations; + private ObservableCollection _applicationfirmwareversions; /// - /// Gets or sets the Configurations. + /// Gets or sets the ApplicationFirmwareVersions. /// - public ObservableCollection Configurations + public ObservableCollection ApplicationFirmwareVersions { get { - return _configurations; + return _applicationfirmwareversions; } set { - _configurations = value; RaisePropertyChanged(nameof(Configurations)); + _applicationfirmwareversions = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersions)); } } - private ICollectionView _configurationsViewSource; + private ICollectionView _applicationfirmwareversionsViewSource; /// - /// Gets or sets the Configurations View Source. + /// Gets or sets the ApplicationFirmwareVersions View Source. /// - public ICollectionView ConfigurationsViewSource + public ICollectionView ApplicationFirmwareVersionsViewSource { get { - return _configurationsViewSource; + return _applicationfirmwareversionsViewSource; } set { - _configurationsViewSource = value; RaisePropertyChanged(nameof(ConfigurationsViewSource)); + _applicationfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersionsViewSource)); } } - private ObservableCollection _contacts; + private ObservableCollection _applicationosversions; /// - /// Gets or sets the Contacts. + /// Gets or sets the ApplicationOsVersions. /// - public ObservableCollection Contacts + public ObservableCollection ApplicationOsVersions { get { - return _contacts; + return _applicationosversions; } set { - _contacts = value; RaisePropertyChanged(nameof(Contacts)); + _applicationosversions = value; RaisePropertyChanged(nameof(ApplicationOsVersions)); } } - private ICollectionView _contactsViewSource; + private ICollectionView _applicationosversionsViewSource; /// - /// Gets or sets the Contacts View Source. + /// Gets or sets the ApplicationOsVersions View Source. /// - public ICollectionView ContactsViewSource + public ICollectionView ApplicationOsVersionsViewSource { get { - return _contactsViewSource; + return _applicationosversionsViewSource; } set { - _contactsViewSource = value; RaisePropertyChanged(nameof(ContactsViewSource)); + _applicationosversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationOsVersionsViewSource)); } } - private ObservableCollection _customers; + private ObservableCollection _bittypes; /// - /// Gets or sets the Customers. + /// Gets or sets the BitTypes. /// - public ObservableCollection Customers + public ObservableCollection BitTypes { get { - return _customers; + return _bittypes; } set { - _customers = value; RaisePropertyChanged(nameof(Customers)); + _bittypes = value; RaisePropertyChanged(nameof(BitTypes)); } } - private ICollectionView _customersViewSource; + private ICollectionView _bittypesViewSource; /// - /// Gets or sets the Customers View Source. + /// Gets or sets the BitTypes View Source. /// - public ICollectionView CustomersViewSource + public ICollectionView BitTypesViewSource { get { - return _customersViewSource; + return _bittypesViewSource; } set { - _customersViewSource = value; RaisePropertyChanged(nameof(CustomersViewSource)); + _bittypesViewSource = value; RaisePropertyChanged(nameof(BitTypesViewSource)); } } - private ObservableCollection _datastoreitems; + private ObservableCollection _brushstops; /// - /// Gets or sets the DataStoreItems. + /// Gets or sets the BrushStops. /// - public ObservableCollection DataStoreItems + public ObservableCollection BrushStops { get { - return _datastoreitems; + return _brushstops; } set { - _datastoreitems = value; RaisePropertyChanged(nameof(DataStoreItems)); + _brushstops = value; RaisePropertyChanged(nameof(BrushStops)); } } - private ICollectionView _datastoreitemsViewSource; + private ICollectionView _brushstopsViewSource; /// - /// Gets or sets the DataStoreItems View Source. + /// Gets or sets the BrushStops View Source. /// - public ICollectionView DataStoreItemsViewSource + public ICollectionView BrushStopsViewSource { get { - return _datastoreitemsViewSource; + return _brushstopsViewSource; } set { - _datastoreitemsViewSource = value; RaisePropertyChanged(nameof(DataStoreItemsViewSource)); + _brushstopsViewSource = value; RaisePropertyChanged(nameof(BrushStopsViewSource)); } } - private ObservableCollection _dispensertypes; + private ObservableCollection _btsrapplicationtypes; /// - /// Gets or sets the DispenserTypes. + /// Gets or sets the BtsrApplicationTypes. /// - public ObservableCollection DispenserTypes + public ObservableCollection BtsrApplicationTypes { get { - return _dispensertypes; + return _btsrapplicationtypes; } set { - _dispensertypes = value; RaisePropertyChanged(nameof(DispenserTypes)); + _btsrapplicationtypes = value; RaisePropertyChanged(nameof(BtsrApplicationTypes)); } } - private ICollectionView _dispensertypesViewSource; + private ICollectionView _btsrapplicationtypesViewSource; /// - /// Gets or sets the DispenserTypes View Source. + /// Gets or sets the BtsrApplicationTypes View Source. /// - public ICollectionView DispenserTypesViewSource + public ICollectionView BtsrApplicationTypesViewSource { get { - return _dispensertypesViewSource; + return _btsrapplicationtypesViewSource; } set { - _dispensertypesViewSource = value; RaisePropertyChanged(nameof(DispenserTypesViewSource)); + _btsrapplicationtypesViewSource = value; RaisePropertyChanged(nameof(BtsrApplicationTypesViewSource)); } } - private ObservableCollection _dispensers; + private ObservableCollection _btsryarntypes; /// - /// Gets or sets the Dispensers. + /// Gets or sets the BtsrYarnTypes. /// - public ObservableCollection Dispensers + public ObservableCollection BtsrYarnTypes { get { - return _dispensers; + return _btsryarntypes; } set { - _dispensers = value; RaisePropertyChanged(nameof(Dispensers)); + _btsryarntypes = value; RaisePropertyChanged(nameof(BtsrYarnTypes)); } } - private ICollectionView _dispensersViewSource; + private ICollectionView _btsryarntypesViewSource; /// - /// Gets or sets the Dispensers View Source. + /// Gets or sets the BtsrYarnTypes View Source. /// - public ICollectionView DispensersViewSource + public ICollectionView BtsrYarnTypesViewSource { get { - return _dispensersViewSource; + return _btsryarntypesViewSource; } set { - _dispensersViewSource = value; RaisePropertyChanged(nameof(DispensersViewSource)); + _btsryarntypesViewSource = value; RaisePropertyChanged(nameof(BtsrYarnTypesViewSource)); } } - private ObservableCollection _embeddedfirmwareversions; + private ObservableCollection _cartridgetypes; /// - /// Gets or sets the EmbeddedFirmwareVersions. + /// Gets or sets the CartridgeTypes. /// - public ObservableCollection EmbeddedFirmwareVersions + public ObservableCollection CartridgeTypes { get { - return _embeddedfirmwareversions; + return _cartridgetypes; } set { - _embeddedfirmwareversions = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersions)); + _cartridgetypes = value; RaisePropertyChanged(nameof(CartridgeTypes)); } } - private ICollectionView _embeddedfirmwareversionsViewSource; + private ICollectionView _cartridgetypesViewSource; /// - /// Gets or sets the EmbeddedFirmwareVersions View Source. + /// Gets or sets the CartridgeTypes View Source. /// - public ICollectionView EmbeddedFirmwareVersionsViewSource + public ICollectionView CartridgeTypesViewSource { get { - return _embeddedfirmwareversionsViewSource; + return _cartridgetypesViewSource; } set { - _embeddedfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersionsViewSource)); + _cartridgetypesViewSource = value; RaisePropertyChanged(nameof(CartridgeTypesViewSource)); } } - private ObservableCollection _eventtypes; + private ObservableCollection _cats; /// - /// Gets or sets the EventTypes. + /// Gets or sets the Cats. /// - public ObservableCollection EventTypes + public ObservableCollection Cats { get { - return _eventtypes; + return _cats; } set { - _eventtypes = value; RaisePropertyChanged(nameof(EventTypes)); + _cats = value; RaisePropertyChanged(nameof(Cats)); } } - private ICollectionView _eventtypesViewSource; + private ICollectionView _catsViewSource; /// - /// Gets or sets the EventTypes View Source. + /// Gets or sets the Cats View Source. /// - public ICollectionView EventTypesViewSource + public ICollectionView CatsViewSource { get { - return _eventtypesViewSource; + return _catsViewSource; } set { - _eventtypesViewSource = value; RaisePropertyChanged(nameof(EventTypesViewSource)); + _catsViewSource = value; RaisePropertyChanged(nameof(CatsViewSource)); } } - private ObservableCollection _fibershapes; + private ObservableCollection _ccts; /// - /// Gets or sets the FiberShapes. + /// Gets or sets the Ccts. /// - public ObservableCollection FiberShapes + public ObservableCollection Ccts { get { - return _fibershapes; + return _ccts; } set { - _fibershapes = value; RaisePropertyChanged(nameof(FiberShapes)); + _ccts = value; RaisePropertyChanged(nameof(Ccts)); } } - private ICollectionView _fibershapesViewSource; + private ICollectionView _cctsViewSource; /// - /// Gets or sets the FiberShapes View Source. + /// Gets or sets the Ccts View Source. /// - public ICollectionView FiberShapesViewSource + public ICollectionView CctsViewSource { get { - return _fibershapesViewSource; + return _cctsViewSource; } set { - _fibershapesViewSource = value; RaisePropertyChanged(nameof(FiberShapesViewSource)); + _cctsViewSource = value; RaisePropertyChanged(nameof(CctsViewSource)); } } - private ObservableCollection _fibersynths; + private ObservableCollection _colorcatalogs; /// - /// Gets or sets the FiberSynths. + /// Gets or sets the ColorCatalogs. /// - public ObservableCollection FiberSynths + public ObservableCollection ColorCatalogs { get { - return _fibersynths; + return _colorcatalogs; } set { - _fibersynths = value; RaisePropertyChanged(nameof(FiberSynths)); + _colorcatalogs = value; RaisePropertyChanged(nameof(ColorCatalogs)); } } - private ICollectionView _fibersynthsViewSource; + private ICollectionView _colorcatalogsViewSource; /// - /// Gets or sets the FiberSynths View Source. + /// Gets or sets the ColorCatalogs View Source. /// - public ICollectionView FiberSynthsViewSource + public ICollectionView ColorCatalogsViewSource { get { - return _fibersynthsViewSource; + return _colorcatalogsViewSource; } set { - _fibersynthsViewSource = value; RaisePropertyChanged(nameof(FiberSynthsViewSource)); + _colorcatalogsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsViewSource)); } } - private ObservableCollection _fseversions; + private ObservableCollection _colorcatalogsgroups; /// - /// Gets or sets the FseVersions. + /// Gets or sets the ColorCatalogsGroups. /// - public ObservableCollection FseVersions + public ObservableCollection ColorCatalogsGroups { get { - return _fseversions; + return _colorcatalogsgroups; } set { - _fseversions = value; RaisePropertyChanged(nameof(FseVersions)); + _colorcatalogsgroups = value; RaisePropertyChanged(nameof(ColorCatalogsGroups)); } } - private ICollectionView _fseversionsViewSource; + private ICollectionView _colorcatalogsgroupsViewSource; /// - /// Gets or sets the FseVersions View Source. + /// Gets or sets the ColorCatalogsGroups View Source. /// - public ICollectionView FseVersionsViewSource + public ICollectionView ColorCatalogsGroupsViewSource { get { - return _fseversionsViewSource; + return _colorcatalogsgroupsViewSource; } set { - _fseversionsViewSource = value; RaisePropertyChanged(nameof(FseVersionsViewSource)); + _colorcatalogsgroupsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsGroupsViewSource)); } } - private ObservableCollection _globaldatastoreitems; + private ObservableCollection _colorcatalogsitems; /// - /// Gets or sets the GlobalDataStoreItems. + /// Gets or sets the ColorCatalogsItems. /// - public ObservableCollection GlobalDataStoreItems + public ObservableCollection ColorCatalogsItems { get { - return _globaldatastoreitems; + return _colorcatalogsitems; } set { - _globaldatastoreitems = value; RaisePropertyChanged(nameof(GlobalDataStoreItems)); + _colorcatalogsitems = value; RaisePropertyChanged(nameof(ColorCatalogsItems)); } } - private ICollectionView _globaldatastoreitemsViewSource; + private ICollectionView _colorcatalogsitemsViewSource; /// - /// Gets or sets the GlobalDataStoreItems View Source. + /// Gets or sets the ColorCatalogsItems View Source. /// - public ICollectionView GlobalDataStoreItemsViewSource + public ICollectionView ColorCatalogsItemsViewSource { get { - return _globaldatastoreitemsViewSource; + return _colorcatalogsitemsViewSource; } set { - _globaldatastoreitemsViewSource = value; RaisePropertyChanged(nameof(GlobalDataStoreItemsViewSource)); + _colorcatalogsitemsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsViewSource)); } } - private ObservableCollection _hardwareblowertypes; + private ObservableCollection _colorcatalogsitemsrecipes; /// - /// Gets or sets the HardwareBlowerTypes. + /// Gets or sets the ColorCatalogsItemsRecipes. /// - public ObservableCollection HardwareBlowerTypes + public ObservableCollection ColorCatalogsItemsRecipes { get { - return _hardwareblowertypes; + return _colorcatalogsitemsrecipes; } set { - _hardwareblowertypes = value; RaisePropertyChanged(nameof(HardwareBlowerTypes)); + _colorcatalogsitemsrecipes = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipes)); } } - private ICollectionView _hardwareblowertypesViewSource; + private ICollectionView _colorcatalogsitemsrecipesViewSource; /// - /// Gets or sets the HardwareBlowerTypes View Source. + /// Gets or sets the ColorCatalogsItemsRecipes View Source. /// - public ICollectionView HardwareBlowerTypesViewSource + public ICollectionView ColorCatalogsItemsRecipesViewSource { get { - return _hardwareblowertypesViewSource; + return _colorcatalogsitemsrecipesViewSource; } set { - _hardwareblowertypesViewSource = value; RaisePropertyChanged(nameof(HardwareBlowerTypesViewSource)); + _colorcatalogsitemsrecipesViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipesViewSource)); } } - private ObservableCollection _hardwareblowers; + private ObservableCollection _colorprocessinkuptake; /// - /// Gets or sets the HardwareBlowers. + /// Gets or sets the ColorProcessInkUptake. /// - public ObservableCollection HardwareBlowers + public ObservableCollection ColorProcessInkUptake { get { - return _hardwareblowers; + return _colorprocessinkuptake; } set { - _hardwareblowers = value; RaisePropertyChanged(nameof(HardwareBlowers)); + _colorprocessinkuptake = value; RaisePropertyChanged(nameof(ColorProcessInkUptake)); } } - private ICollectionView _hardwareblowersViewSource; + private ICollectionView _colorprocessinkuptakeViewSource; /// - /// Gets or sets the HardwareBlowers View Source. + /// Gets or sets the ColorProcessInkUptake View Source. /// - public ICollectionView HardwareBlowersViewSource + public ICollectionView ColorProcessInkUptakeViewSource { get { - return _hardwareblowersViewSource; + return _colorprocessinkuptakeViewSource; } set { - _hardwareblowersViewSource = value; RaisePropertyChanged(nameof(HardwareBlowersViewSource)); + _colorprocessinkuptakeViewSource = value; RaisePropertyChanged(nameof(ColorProcessInkUptakeViewSource)); } } - private ObservableCollection _hardwarebreaksensortypes; + private ObservableCollection _colorspaces; /// - /// Gets or sets the HardwareBreakSensorTypes. + /// Gets or sets the ColorSpaces. /// - public ObservableCollection HardwareBreakSensorTypes + public ObservableCollection ColorSpaces { get { - return _hardwarebreaksensortypes; + return _colorspaces; } set { - _hardwarebreaksensortypes = value; RaisePropertyChanged(nameof(HardwareBreakSensorTypes)); + _colorspaces = value; RaisePropertyChanged(nameof(ColorSpaces)); } } - private ICollectionView _hardwarebreaksensortypesViewSource; + private ICollectionView _colorspacesViewSource; /// - /// Gets or sets the HardwareBreakSensorTypes View Source. + /// Gets or sets the ColorSpaces View Source. /// - public ICollectionView HardwareBreakSensorTypesViewSource + public ICollectionView ColorSpacesViewSource { get { - return _hardwarebreaksensortypesViewSource; + return _colorspacesViewSource; } set { - _hardwarebreaksensortypesViewSource = value; RaisePropertyChanged(nameof(HardwareBreakSensorTypesViewSource)); + _colorspacesViewSource = value; RaisePropertyChanged(nameof(ColorSpacesViewSource)); } } - private ObservableCollection _hardwarebreaksensors; + private ObservableCollection _configurations; /// - /// Gets or sets the HardwareBreakSensors. + /// Gets or sets the Configurations. /// - public ObservableCollection HardwareBreakSensors + public ObservableCollection Configurations { get { - return _hardwarebreaksensors; + return _configurations; } set { - _hardwarebreaksensors = value; RaisePropertyChanged(nameof(HardwareBreakSensors)); + _configurations = value; RaisePropertyChanged(nameof(Configurations)); } } - private ICollectionView _hardwarebreaksensorsViewSource; + private ICollectionView _configurationsViewSource; /// - /// Gets or sets the HardwareBreakSensors View Source. + /// Gets or sets the Configurations View Source. /// - public ICollectionView HardwareBreakSensorsViewSource + public ICollectionView ConfigurationsViewSource { get { - return _hardwarebreaksensorsViewSource; + return _configurationsViewSource; } set { - _hardwarebreaksensorsViewSource = value; RaisePropertyChanged(nameof(HardwareBreakSensorsViewSource)); + _configurationsViewSource = value; RaisePropertyChanged(nameof(ConfigurationsViewSource)); } } - private ObservableCollection _hardwaredancertypes; + private ObservableCollection _contacts; /// - /// Gets or sets the HardwareDancerTypes. + /// Gets or sets the Contacts. /// - public ObservableCollection HardwareDancerTypes + public ObservableCollection Contacts { get { - return _hardwaredancertypes; + return _contacts; } set { - _hardwaredancertypes = value; RaisePropertyChanged(nameof(HardwareDancerTypes)); + _contacts = value; RaisePropertyChanged(nameof(Contacts)); } } - private ICollectionView _hardwaredancertypesViewSource; + private ICollectionView _contactsViewSource; /// - /// Gets or sets the HardwareDancerTypes View Source. + /// Gets or sets the Contacts View Source. /// - public ICollectionView HardwareDancerTypesViewSource + public ICollectionView ContactsViewSource { get { - return _hardwaredancertypesViewSource; + return _contactsViewSource; } set { - _hardwaredancertypesViewSource = value; RaisePropertyChanged(nameof(HardwareDancerTypesViewSource)); + _contactsViewSource = value; RaisePropertyChanged(nameof(ContactsViewSource)); } } - private ObservableCollection _hardwaredancers; + private ObservableCollection _customers; /// - /// Gets or sets the HardwareDancers. + /// Gets or sets the Customers. /// - public ObservableCollection HardwareDancers + public ObservableCollection Customers { get { - return _hardwaredancers; + return _customers; } set { - _hardwaredancers = value; RaisePropertyChanged(nameof(HardwareDancers)); + _customers = value; RaisePropertyChanged(nameof(Customers)); } } - private ICollectionView _hardwaredancersViewSource; + private ICollectionView _customersViewSource; /// - /// Gets or sets the HardwareDancers View Source. + /// Gets or sets the Customers View Source. /// - public ICollectionView HardwareDancersViewSource + public ICollectionView CustomersViewSource { get { - return _hardwaredancersViewSource; + return _customersViewSource; } set { - _hardwaredancersViewSource = value; RaisePropertyChanged(nameof(HardwareDancersViewSource)); + _customersViewSource = value; RaisePropertyChanged(nameof(CustomersViewSource)); } } - private ObservableCollection _hardwaremotortypes; + private ObservableCollection _datastoreitems; /// - /// Gets or sets the HardwareMotorTypes. + /// Gets or sets the DataStoreItems. /// - public ObservableCollection HardwareMotorTypes + public ObservableCollection DataStoreItems { get { - return _hardwaremotortypes; + return _datastoreitems; } set { - _hardwaremotortypes = value; RaisePropertyChanged(nameof(HardwareMotorTypes)); + _datastoreitems = value; RaisePropertyChanged(nameof(DataStoreItems)); } } - private ICollectionView _hardwaremotortypesViewSource; + private ICollectionView _datastoreitemsViewSource; /// - /// Gets or sets the HardwareMotorTypes View Source. + /// Gets or sets the DataStoreItems View Source. /// - public ICollectionView HardwareMotorTypesViewSource + public ICollectionView DataStoreItemsViewSource { get { - return _hardwaremotortypesViewSource; + return _datastoreitemsViewSource; } set { - _hardwaremotortypesViewSource = value; RaisePropertyChanged(nameof(HardwareMotorTypesViewSource)); + _datastoreitemsViewSource = value; RaisePropertyChanged(nameof(DataStoreItemsViewSource)); } } - private ObservableCollection _hardwaremotors; + private ObservableCollection _dispensertypes; /// - /// Gets or sets the HardwareMotors. + /// Gets or sets the DispenserTypes. /// - public ObservableCollection HardwareMotors + public ObservableCollection DispenserTypes { get { - return _hardwaremotors; + return _dispensertypes; } set { - _hardwaremotors = value; RaisePropertyChanged(nameof(HardwareMotors)); + _dispensertypes = value; RaisePropertyChanged(nameof(DispenserTypes)); } } - private ICollectionView _hardwaremotorsViewSource; + private ICollectionView _dispensertypesViewSource; /// - /// Gets or sets the HardwareMotors View Source. + /// Gets or sets the DispenserTypes View Source. /// - public ICollectionView HardwareMotorsViewSource + public ICollectionView DispenserTypesViewSource { get { - return _hardwaremotorsViewSource; + return _dispensertypesViewSource; } set { - _hardwaremotorsViewSource = value; RaisePropertyChanged(nameof(HardwareMotorsViewSource)); + _dispensertypesViewSource = value; RaisePropertyChanged(nameof(DispenserTypesViewSource)); } } - private ObservableCollection _hardwarepidcontroltypes; + private ObservableCollection _dispensers; /// - /// Gets or sets the HardwarePidControlTypes. + /// Gets or sets the Dispensers. /// - public ObservableCollection HardwarePidControlTypes + public ObservableCollection Dispensers { get { - return _hardwarepidcontroltypes; + return _dispensers; } set { - _hardwarepidcontroltypes = value; RaisePropertyChanged(nameof(HardwarePidControlTypes)); + _dispensers = value; RaisePropertyChanged(nameof(Dispensers)); } } - private ICollectionView _hardwarepidcontroltypesViewSource; + private ICollectionView _dispensersViewSource; /// - /// Gets or sets the HardwarePidControlTypes View Source. + /// Gets or sets the Dispensers View Source. /// - public ICollectionView HardwarePidControlTypesViewSource + public ICollectionView DispensersViewSource { get { - return _hardwarepidcontroltypesViewSource; + return _dispensersViewSource; } set { - _hardwarepidcontroltypesViewSource = value; RaisePropertyChanged(nameof(HardwarePidControlTypesViewSource)); + _dispensersViewSource = value; RaisePropertyChanged(nameof(DispensersViewSource)); } } - private ObservableCollection _hardwarepidcontrols; + private ObservableCollection _embeddedfirmwareversions; /// - /// Gets or sets the HardwarePidControls. + /// Gets or sets the EmbeddedFirmwareVersions. /// - public ObservableCollection HardwarePidControls + public ObservableCollection EmbeddedFirmwareVersions { get { - return _hardwarepidcontrols; + return _embeddedfirmwareversions; } set { - _hardwarepidcontrols = value; RaisePropertyChanged(nameof(HardwarePidControls)); + _embeddedfirmwareversions = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersions)); } } - private ICollectionView _hardwarepidcontrolsViewSource; + private ICollectionView _embeddedfirmwareversionsViewSource; /// - /// Gets or sets the HardwarePidControls View Source. + /// Gets or sets the EmbeddedFirmwareVersions View Source. /// - public ICollectionView HardwarePidControlsViewSource + public ICollectionView EmbeddedFirmwareVersionsViewSource { get { - return _hardwarepidcontrolsViewSource; + return _embeddedfirmwareversionsViewSource; } set { - _hardwarepidcontrolsViewSource = value; RaisePropertyChanged(nameof(HardwarePidControlsViewSource)); + _embeddedfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersionsViewSource)); } } - private ObservableCollection _hardwarespeedsensortypes; + private ObservableCollection _eventtypes; /// - /// Gets or sets the HardwareSpeedSensorTypes. + /// Gets or sets the EventTypes. /// - public ObservableCollection HardwareSpeedSensorTypes + public ObservableCollection EventTypes { get { - return _hardwarespeedsensortypes; + return _eventtypes; } set { - _hardwarespeedsensortypes = value; RaisePropertyChanged(nameof(HardwareSpeedSensorTypes)); + _eventtypes = value; RaisePropertyChanged(nameof(EventTypes)); } } - private ICollectionView _hardwarespeedsensortypesViewSource; + private ICollectionView _eventtypesViewSource; /// - /// Gets or sets the HardwareSpeedSensorTypes View Source. + /// Gets or sets the EventTypes View Source. /// - public ICollectionView HardwareSpeedSensorTypesViewSource + public ICollectionView EventTypesViewSource { get { - return _hardwarespeedsensortypesViewSource; + return _eventtypesViewSource; } set { - _hardwarespeedsensortypesViewSource = value; RaisePropertyChanged(nameof(HardwareSpeedSensorTypesViewSource)); + _eventtypesViewSource = value; RaisePropertyChanged(nameof(EventTypesViewSource)); } } - private ObservableCollection _hardwarespeedsensors; + private ObservableCollection _fibershapes; /// - /// Gets or sets the HardwareSpeedSensors. + /// Gets or sets the FiberShapes. /// - public ObservableCollection HardwareSpeedSensors + public ObservableCollection FiberShapes { get { - return _hardwarespeedsensors; + return _fibershapes; } set { - _hardwarespeedsensors = value; RaisePropertyChanged(nameof(HardwareSpeedSensors)); + _fibershapes = value; RaisePropertyChanged(nameof(FiberShapes)); } } - private ICollectionView _hardwarespeedsensorsViewSource; + private ICollectionView _fibershapesViewSource; /// - /// Gets or sets the HardwareSpeedSensors View Source. + /// Gets or sets the FiberShapes View Source. /// - public ICollectionView HardwareSpeedSensorsViewSource + public ICollectionView FiberShapesViewSource { get { - return _hardwarespeedsensorsViewSource; + return _fibershapesViewSource; } set { - _hardwarespeedsensorsViewSource = value; RaisePropertyChanged(nameof(HardwareSpeedSensorsViewSource)); + _fibershapesViewSource = value; RaisePropertyChanged(nameof(FiberShapesViewSource)); } } - private ObservableCollection _hardwareversions; + private ObservableCollection _fibersynths; /// - /// Gets or sets the HardwareVersions. + /// Gets or sets the FiberSynths. /// - public ObservableCollection HardwareVersions + public ObservableCollection FiberSynths { get { - return _hardwareversions; + return _fibersynths; } set { - _hardwareversions = value; RaisePropertyChanged(nameof(HardwareVersions)); + _fibersynths = value; RaisePropertyChanged(nameof(FiberSynths)); } } - private ICollectionView _hardwareversionsViewSource; + private ICollectionView _fibersynthsViewSource; /// - /// Gets or sets the HardwareVersions View Source. + /// Gets or sets the FiberSynths View Source. /// - public ICollectionView HardwareVersionsViewSource + public ICollectionView FiberSynthsViewSource { get { - return _hardwareversionsViewSource; + return _fibersynthsViewSource; } set { - _hardwareversionsViewSource = value; RaisePropertyChanged(nameof(HardwareVersionsViewSource)); + _fibersynthsViewSource = value; RaisePropertyChanged(nameof(FiberSynthsViewSource)); } } - private ObservableCollection _hardwarewindertypes; + private ObservableCollection _fseversions; /// - /// Gets or sets the HardwareWinderTypes. + /// Gets or sets the FseVersions. /// - public ObservableCollection HardwareWinderTypes + public ObservableCollection FseVersions { get { - return _hardwarewindertypes; + return _fseversions; } set { - _hardwarewindertypes = value; RaisePropertyChanged(nameof(HardwareWinderTypes)); + _fseversions = value; RaisePropertyChanged(nameof(FseVersions)); } } - private ICollectionView _hardwarewindertypesViewSource; + private ICollectionView _fseversionsViewSource; /// - /// Gets or sets the HardwareWinderTypes View Source. + /// Gets or sets the FseVersions View Source. /// - public ICollectionView HardwareWinderTypesViewSource + public ICollectionView FseVersionsViewSource { get { - return _hardwarewindertypesViewSource; + return _fseversionsViewSource; } set { - _hardwarewindertypesViewSource = value; RaisePropertyChanged(nameof(HardwareWinderTypesViewSource)); + _fseversionsViewSource = value; RaisePropertyChanged(nameof(FseVersionsViewSource)); } } - private ObservableCollection _hardwarewinders; + private ObservableCollection _globaldatastoreitems; /// - /// Gets or sets the HardwareWinders. + /// Gets or sets the GlobalDataStoreItems. /// - public ObservableCollection HardwareWinders + public ObservableCollection GlobalDataStoreItems { get { - return _hardwarewinders; + return _globaldatastoreitems; } set { - _hardwarewinders = value; RaisePropertyChanged(nameof(HardwareWinders)); + _globaldatastoreitems = value; RaisePropertyChanged(nameof(GlobalDataStoreItems)); } } - private ICollectionView _hardwarewindersViewSource; + private ICollectionView _globaldatastoreitemsViewSource; /// - /// Gets or sets the HardwareWinders View Source. + /// Gets or sets the GlobalDataStoreItems View Source. /// - public ICollectionView HardwareWindersViewSource + public ICollectionView GlobalDataStoreItemsViewSource { get { - return _hardwarewindersViewSource; + return _globaldatastoreitemsViewSource; } set { - _hardwarewindersViewSource = value; RaisePropertyChanged(nameof(HardwareWindersViewSource)); + _globaldatastoreitemsViewSource = value; RaisePropertyChanged(nameof(GlobalDataStoreItemsViewSource)); } } - private ObservableCollection _idspackformulas; + private ObservableCollection _hardwareblowertypes; /// - /// Gets or sets the IdsPackFormulas. + /// Gets or sets the HardwareBlowerTypes. /// - public ObservableCollection IdsPackFormulas + public ObservableCollection HardwareBlowerTypes { get { - return _idspackformulas; + return _hardwareblowertypes; } set { - _idspackformulas = value; RaisePropertyChanged(nameof(IdsPackFormulas)); + _hardwareblowertypes = value; RaisePropertyChanged(nameof(HardwareBlowerTypes)); } } - private ICollectionView _idspackformulasViewSource; + private ICollectionView _hardwareblowertypesViewSource; /// - /// Gets or sets the IdsPackFormulas View Source. + /// Gets or sets the HardwareBlowerTypes View Source. /// - public ICollectionView IdsPackFormulasViewSource + public ICollectionView HardwareBlowerTypesViewSource { get { - return _idspackformulasViewSource; + return _hardwareblowertypesViewSource; } set { - _idspackformulasViewSource = value; RaisePropertyChanged(nameof(IdsPackFormulasViewSource)); + _hardwareblowertypesViewSource = value; RaisePropertyChanged(nameof(HardwareBlowerTypesViewSource)); } } - private ObservableCollection _idspacks; + private ObservableCollection _hardwareblowers; /// - /// Gets or sets the IdsPacks. + /// Gets or sets the HardwareBlowers. /// - public ObservableCollection IdsPacks + public ObservableCollection HardwareBlowers { get { - return _idspacks; + return _hardwareblowers; } set { - _idspacks = value; RaisePropertyChanged(nameof(IdsPacks)); + _hardwareblowers = value; RaisePropertyChanged(nameof(HardwareBlowers)); } } - private ICollectionView _idspacksViewSource; + private ICollectionView _hardwareblowersViewSource; /// - /// Gets or sets the IdsPacks View Source. + /// Gets or sets the HardwareBlowers View Source. /// - public ICollectionView IdsPacksViewSource + public ICollectionView HardwareBlowersViewSource { get { - return _idspacksViewSource; + return _hardwareblowersViewSource; } set { - _idspacksViewSource = value; RaisePropertyChanged(nameof(IdsPacksViewSource)); + _hardwareblowersViewSource = value; RaisePropertyChanged(nameof(HardwareBlowersViewSource)); } } - private ObservableCollection _jobruns; + private ObservableCollection _hardwarebreaksensortypes; /// - /// Gets or sets the JobRuns. + /// Gets or sets the HardwareBreakSensorTypes. /// - public ObservableCollection JobRuns + public ObservableCollection HardwareBreakSensorTypes { get { - return _jobruns; + return _hardwarebreaksensortypes; } set { - _jobruns = value; RaisePropertyChanged(nameof(JobRuns)); + _hardwarebreaksensortypes = value; RaisePropertyChanged(nameof(HardwareBreakSensorTypes)); } } - private ICollectionView _jobrunsViewSource; + private ICollectionView _hardwarebreaksensortypesViewSource; /// - /// Gets or sets the JobRuns View Source. + /// Gets or sets the HardwareBreakSensorTypes View Source. /// - public ICollectionView JobRunsViewSource + public ICollectionView HardwareBreakSensorTypesViewSource { get { - return _jobrunsViewSource; + return _hardwarebreaksensortypesViewSource; } set { - _jobrunsViewSource = value; RaisePropertyChanged(nameof(JobRunsViewSource)); + _hardwarebreaksensortypesViewSource = value; RaisePropertyChanged(nameof(HardwareBreakSensorTypesViewSource)); } } - private ObservableCollection _jobs; + private ObservableCollection _hardwarebreaksensors; /// - /// Gets or sets the Jobs. + /// Gets or sets the HardwareBreakSensors. /// - public ObservableCollection Jobs + public ObservableCollection HardwareBreakSensors { get { - return _jobs; + return _hardwarebreaksensors; } set { - _jobs = value; RaisePropertyChanged(nameof(Jobs)); + _hardwarebreaksensors = value; RaisePropertyChanged(nameof(HardwareBreakSensors)); } } - private ICollectionView _jobsViewSource; + private ICollectionView _hardwarebreaksensorsViewSource; /// - /// Gets or sets the Jobs View Source. + /// Gets or sets the HardwareBreakSensors View Source. /// - public ICollectionView JobsViewSource + public ICollectionView HardwareBreakSensorsViewSource { get { - return _jobsViewSource; + return _hardwarebreaksensorsViewSource; } set { - _jobsViewSource = value; RaisePropertyChanged(nameof(JobsViewSource)); + _hardwarebreaksensorsViewSource = value; RaisePropertyChanged(nameof(HardwareBreakSensorsViewSource)); } } - private ObservableCollection _linearmassdensityunits; + private ObservableCollection _hardwaredancertypes; /// - /// Gets or sets the LinearMassDensityUnits. + /// Gets or sets the HardwareDancerTypes. /// - public ObservableCollection LinearMassDensityUnits + public ObservableCollection HardwareDancerTypes { get { - return _linearmassdensityunits; + return _hardwaredancertypes; } set { - _linearmassdensityunits = value; RaisePropertyChanged(nameof(LinearMassDensityUnits)); + _hardwaredancertypes = value; RaisePropertyChanged(nameof(HardwareDancerTypes)); } } - private ICollectionView _linearmassdensityunitsViewSource; + private ICollectionView _hardwaredancertypesViewSource; /// - /// Gets or sets the LinearMassDensityUnits View Source. + /// Gets or sets the HardwareDancerTypes View Source. /// - public ICollectionView LinearMassDensityUnitsViewSource + public ICollectionView HardwareDancerTypesViewSource { get { - return _linearmassdensityunitsViewSource; + return _hardwaredancertypesViewSource; } set { - _linearmassdensityunitsViewSource = value; RaisePropertyChanged(nameof(LinearMassDensityUnitsViewSource)); + _hardwaredancertypesViewSource = value; RaisePropertyChanged(nameof(HardwareDancerTypesViewSource)); } } - private ObservableCollection _liquidtypes; + private ObservableCollection _hardwaredancers; /// - /// Gets or sets the LiquidTypes. + /// Gets or sets the HardwareDancers. /// - public ObservableCollection LiquidTypes + public ObservableCollection HardwareDancers { get { - return _liquidtypes; + return _hardwaredancers; } set { - _liquidtypes = value; RaisePropertyChanged(nameof(LiquidTypes)); + _hardwaredancers = value; RaisePropertyChanged(nameof(HardwareDancers)); } } - private ICollectionView _liquidtypesViewSource; + private ICollectionView _hardwaredancersViewSource; /// - /// Gets or sets the LiquidTypes View Source. + /// Gets or sets the HardwareDancers View Source. /// - public ICollectionView LiquidTypesViewSource + public ICollectionView HardwareDancersViewSource { get { - return _liquidtypesViewSource; + return _hardwaredancersViewSource; } set { - _liquidtypesViewSource = value; RaisePropertyChanged(nameof(LiquidTypesViewSource)); + _hardwaredancersViewSource = value; RaisePropertyChanged(nameof(HardwareDancersViewSource)); } } - private ObservableCollection _liquidtypesrmls; + private ObservableCollection _hardwaremotortypes; /// - /// Gets or sets the LiquidTypesRmls. + /// Gets or sets the HardwareMotorTypes. /// - public ObservableCollection LiquidTypesRmls + public ObservableCollection HardwareMotorTypes { get { - return _liquidtypesrmls; + return _hardwaremotortypes; } set { - _liquidtypesrmls = value; RaisePropertyChanged(nameof(LiquidTypesRmls)); + _hardwaremotortypes = value; RaisePropertyChanged(nameof(HardwareMotorTypes)); } } - private ICollectionView _liquidtypesrmlsViewSource; + private ICollectionView _hardwaremotortypesViewSource; /// - /// Gets or sets the LiquidTypesRmls View Source. + /// Gets or sets the HardwareMotorTypes View Source. /// - public ICollectionView LiquidTypesRmlsViewSource + public ICollectionView HardwareMotorTypesViewSource { get { - return _liquidtypesrmlsViewSource; + return _hardwaremotortypesViewSource; } set { - _liquidtypesrmlsViewSource = value; RaisePropertyChanged(nameof(LiquidTypesRmlsViewSource)); + _hardwaremotortypesViewSource = value; RaisePropertyChanged(nameof(HardwareMotorTypesViewSource)); } } - private ObservableCollection _machineprototypes; + private ObservableCollection _hardwaremotors; /// - /// Gets or sets the MachinePrototypes. + /// Gets or sets the HardwareMotors. /// - public ObservableCollection MachinePrototypes + public ObservableCollection HardwareMotors { get { - return _machineprototypes; + return _hardwaremotors; } set { - _machineprototypes = value; RaisePropertyChanged(nameof(MachinePrototypes)); + _hardwaremotors = value; RaisePropertyChanged(nameof(HardwareMotors)); } } - private ICollectionView _machineprototypesViewSource; + private ICollectionView _hardwaremotorsViewSource; /// - /// Gets or sets the MachinePrototypes View Source. + /// Gets or sets the HardwareMotors View Source. /// - public ICollectionView MachinePrototypesViewSource + public ICollectionView HardwareMotorsViewSource { get { - return _machineprototypesViewSource; + return _hardwaremotorsViewSource; } set { - _machineprototypesViewSource = value; RaisePropertyChanged(nameof(MachinePrototypesViewSource)); + _hardwaremotorsViewSource = value; RaisePropertyChanged(nameof(HardwareMotorsViewSource)); } } - private ObservableCollection _machinestudioversions; + private ObservableCollection _hardwarepidcontroltypes; /// - /// Gets or sets the MachineStudioVersions. + /// Gets or sets the HardwarePidControlTypes. /// - public ObservableCollection MachineStudioVersions + public ObservableCollection HardwarePidControlTypes { get { - return _machinestudioversions; + return _hardwarepidcontroltypes; } set { - _machinestudioversions = value; RaisePropertyChanged(nameof(MachineStudioVersions)); + _hardwarepidcontroltypes = value; RaisePropertyChanged(nameof(HardwarePidControlTypes)); } } - private ICollectionView _machinestudioversionsViewSource; + private ICollectionView _hardwarepidcontroltypesViewSource; /// - /// Gets or sets the MachineStudioVersions View Source. + /// Gets or sets the HardwarePidControlTypes View Source. /// - public ICollectionView MachineStudioVersionsViewSource + public ICollectionView HardwarePidControlTypesViewSource { get { - return _machinestudioversionsViewSource; + return _hardwarepidcontroltypesViewSource; } set { - _machinestudioversionsViewSource = value; RaisePropertyChanged(nameof(MachineStudioVersionsViewSource)); + _hardwarepidcontroltypesViewSource = value; RaisePropertyChanged(nameof(HardwarePidControlTypesViewSource)); } } - private ObservableCollection _machineversions; + private ObservableCollection _hardwarepidcontrols; /// - /// Gets or sets the MachineVersions. + /// Gets or sets the HardwarePidControls. /// - public ObservableCollection MachineVersions + public ObservableCollection HardwarePidControls { get { - return _machineversions; + return _hardwarepidcontrols; } set { - _machineversions = value; RaisePropertyChanged(nameof(MachineVersions)); + _hardwarepidcontrols = value; RaisePropertyChanged(nameof(HardwarePidControls)); } } - private ICollectionView _machineversionsViewSource; + private ICollectionView _hardwarepidcontrolsViewSource; /// - /// Gets or sets the MachineVersions View Source. + /// Gets or sets the HardwarePidControls View Source. /// - public ICollectionView MachineVersionsViewSource + public ICollectionView HardwarePidControlsViewSource { get { - return _machineversionsViewSource; + return _hardwarepidcontrolsViewSource; } set { - _machineversionsViewSource = value; RaisePropertyChanged(nameof(MachineVersionsViewSource)); + _hardwarepidcontrolsViewSource = value; RaisePropertyChanged(nameof(HardwarePidControlsViewSource)); } } - private ObservableCollection _machines; + private ObservableCollection _hardwarespeedsensortypes; /// - /// Gets or sets the Machines. + /// Gets or sets the HardwareSpeedSensorTypes. /// - public ObservableCollection Machines + public ObservableCollection HardwareSpeedSensorTypes { get { - return _machines; + return _hardwarespeedsensortypes; } set { - _machines = value; RaisePropertyChanged(nameof(Machines)); + _hardwarespeedsensortypes = value; RaisePropertyChanged(nameof(HardwareSpeedSensorTypes)); } } - private ICollectionView _machinesViewSource; + private ICollectionView _hardwarespeedsensortypesViewSource; /// - /// Gets or sets the Machines View Source. + /// Gets or sets the HardwareSpeedSensorTypes View Source. /// - public ICollectionView MachinesViewSource + public ICollectionView HardwareSpeedSensorTypesViewSource { get { - return _machinesViewSource; + return _hardwarespeedsensortypesViewSource; } set { - _machinesViewSource = value; RaisePropertyChanged(nameof(MachinesViewSource)); + _hardwarespeedsensortypesViewSource = value; RaisePropertyChanged(nameof(HardwareSpeedSensorTypesViewSource)); } } - private ObservableCollection _machinesevents; + private ObservableCollection _hardwarespeedsensors; /// - /// Gets or sets the MachinesEvents. + /// Gets or sets the HardwareSpeedSensors. /// - public ObservableCollection MachinesEvents + public ObservableCollection HardwareSpeedSensors { get { - return _machinesevents; + return _hardwarespeedsensors; } set { - _machinesevents = value; RaisePropertyChanged(nameof(MachinesEvents)); + _hardwarespeedsensors = value; RaisePropertyChanged(nameof(HardwareSpeedSensors)); } } - private ICollectionView _machineseventsViewSource; + private ICollectionView _hardwarespeedsensorsViewSource; /// - /// Gets or sets the MachinesEvents View Source. + /// Gets or sets the HardwareSpeedSensors View Source. /// - public ICollectionView MachinesEventsViewSource + public ICollectionView HardwareSpeedSensorsViewSource { get { - return _machineseventsViewSource; + return _hardwarespeedsensorsViewSource; } set { - _machineseventsViewSource = value; RaisePropertyChanged(nameof(MachinesEventsViewSource)); + _hardwarespeedsensorsViewSource = value; RaisePropertyChanged(nameof(HardwareSpeedSensorsViewSource)); } } - private ObservableCollection _mediaconditions; + private ObservableCollection _hardwareversions; /// - /// Gets or sets the MediaConditions. + /// Gets or sets the HardwareVersions. /// - public ObservableCollection MediaConditions + public ObservableCollection HardwareVersions { get { - return _mediaconditions; + return _hardwareversions; } set { - _mediaconditions = value; RaisePropertyChanged(nameof(MediaConditions)); + _hardwareversions = value; RaisePropertyChanged(nameof(HardwareVersions)); } } - private ICollectionView _mediaconditionsViewSource; + private ICollectionView _hardwareversionsViewSource; /// - /// Gets or sets the MediaConditions View Source. + /// Gets or sets the HardwareVersions View Source. /// - public ICollectionView MediaConditionsViewSource + public ICollectionView HardwareVersionsViewSource { get { - return _mediaconditionsViewSource; + return _hardwareversionsViewSource; } set { - _mediaconditionsViewSource = value; RaisePropertyChanged(nameof(MediaConditionsViewSource)); + _hardwareversionsViewSource = value; RaisePropertyChanged(nameof(HardwareVersionsViewSource)); } } - private ObservableCollection _mediamaterials; + private ObservableCollection _hardwarewindertypes; /// - /// Gets or sets the MediaMaterials. + /// Gets or sets the HardwareWinderTypes. /// - public ObservableCollection MediaMaterials + public ObservableCollection HardwareWinderTypes { get { - return _mediamaterials; + return _hardwarewindertypes; } set { - _mediamaterials = value; RaisePropertyChanged(nameof(MediaMaterials)); + _hardwarewindertypes = value; RaisePropertyChanged(nameof(HardwareWinderTypes)); } } - private ICollectionView _mediamaterialsViewSource; + private ICollectionView _hardwarewindertypesViewSource; /// - /// Gets or sets the MediaMaterials View Source. + /// Gets or sets the HardwareWinderTypes View Source. /// - public ICollectionView MediaMaterialsViewSource + public ICollectionView HardwareWinderTypesViewSource { get { - return _mediamaterialsViewSource; + return _hardwarewindertypesViewSource; } set { - _mediamaterialsViewSource = value; RaisePropertyChanged(nameof(MediaMaterialsViewSource)); + _hardwarewindertypesViewSource = value; RaisePropertyChanged(nameof(HardwareWinderTypesViewSource)); } } - private ObservableCollection _mediapurposes; + private ObservableCollection _hardwarewinders; /// - /// Gets or sets the MediaPurposes. + /// Gets or sets the HardwareWinders. /// - public ObservableCollection MediaPurposes + public ObservableCollection HardwareWinders { get { - return _mediapurposes; + return _hardwarewinders; } set { - _mediapurposes = value; RaisePropertyChanged(nameof(MediaPurposes)); + _hardwarewinders = value; RaisePropertyChanged(nameof(HardwareWinders)); } } - private ICollectionView _mediapurposesViewSource; + private ICollectionView _hardwarewindersViewSource; /// - /// Gets or sets the MediaPurposes View Source. + /// Gets or sets the HardwareWinders View Source. /// - public ICollectionView MediaPurposesViewSource + public ICollectionView HardwareWindersViewSource { get { - return _mediapurposesViewSource; + return _hardwarewindersViewSource; } set { - _mediapurposesViewSource = value; RaisePropertyChanged(nameof(MediaPurposesViewSource)); + _hardwarewindersViewSource = value; RaisePropertyChanged(nameof(HardwareWindersViewSource)); } } - private ObservableCollection _midtanktypes; + private ObservableCollection _idspackformulas; /// - /// Gets or sets the MidTankTypes. + /// Gets or sets the IdsPackFormulas. /// - public ObservableCollection MidTankTypes + public ObservableCollection IdsPackFormulas { get { - return _midtanktypes; + return _idspackformulas; } set { - _midtanktypes = value; RaisePropertyChanged(nameof(MidTankTypes)); + _idspackformulas = value; RaisePropertyChanged(nameof(IdsPackFormulas)); } } - private ICollectionView _midtanktypesViewSource; + private ICollectionView _idspackformulasViewSource; /// - /// Gets or sets the MidTankTypes View Source. + /// Gets or sets the IdsPackFormulas View Source. /// - public ICollectionView MidTankTypesViewSource + public ICollectionView IdsPackFormulasViewSource { get { - return _midtanktypesViewSource; + return _idspackformulasViewSource; } set { - _midtanktypesViewSource = value; RaisePropertyChanged(nameof(MidTankTypesViewSource)); + _idspackformulasViewSource = value; RaisePropertyChanged(nameof(IdsPackFormulasViewSource)); } } - private ObservableCollection _organizations; + private ObservableCollection _idspacks; /// - /// Gets or sets the Organizations. + /// Gets or sets the IdsPacks. /// - public ObservableCollection Organizations + public ObservableCollection IdsPacks { get { - return _organizations; + return _idspacks; } set { - _organizations = value; RaisePropertyChanged(nameof(Organizations)); + _idspacks = value; RaisePropertyChanged(nameof(IdsPacks)); } } - private ICollectionView _organizationsViewSource; + private ICollectionView _idspacksViewSource; /// - /// Gets or sets the Organizations View Source. + /// Gets or sets the IdsPacks View Source. /// - public ICollectionView OrganizationsViewSource + public ICollectionView IdsPacksViewSource { get { - return _organizationsViewSource; + return _idspacksViewSource; } set { - _organizationsViewSource = value; RaisePropertyChanged(nameof(OrganizationsViewSource)); + _idspacksViewSource = value; RaisePropertyChanged(nameof(IdsPacksViewSource)); } } - private ObservableCollection _permissions; + private ObservableCollection _jobruns; /// - /// Gets or sets the Permissions. + /// Gets or sets the JobRuns. /// - public ObservableCollection Permissions + public ObservableCollection JobRuns { get { - return _permissions; + return _jobruns; } set { - _permissions = value; RaisePropertyChanged(nameof(Permissions)); + _jobruns = value; RaisePropertyChanged(nameof(JobRuns)); } } - private ICollectionView _permissionsViewSource; + private ICollectionView _jobrunsViewSource; /// - /// Gets or sets the Permissions View Source. + /// Gets or sets the JobRuns View Source. /// - public ICollectionView PermissionsViewSource + public ICollectionView JobRunsViewSource { get { - return _permissionsViewSource; + return _jobrunsViewSource; } set { - _permissionsViewSource = value; RaisePropertyChanged(nameof(PermissionsViewSource)); + _jobrunsViewSource = value; RaisePropertyChanged(nameof(JobRunsViewSource)); } } - private ObservableCollection _processparameterstables; + private ObservableCollection _jobs; /// - /// Gets or sets the ProcessParametersTables. + /// Gets or sets the Jobs. /// - public ObservableCollection ProcessParametersTables + public ObservableCollection Jobs { get { - return _processparameterstables; + return _jobs; } set { - _processparameterstables = value; RaisePropertyChanged(nameof(ProcessParametersTables)); + _jobs = value; RaisePropertyChanged(nameof(Jobs)); } } - private ICollectionView _processparameterstablesViewSource; + private ICollectionView _jobsViewSource; /// - /// Gets or sets the ProcessParametersTables View Source. + /// Gets or sets the Jobs View Source. /// - public ICollectionView ProcessParametersTablesViewSource + public ICollectionView JobsViewSource { get { - return _processparameterstablesViewSource; + return _jobsViewSource; } set { - _processparameterstablesViewSource = value; RaisePropertyChanged(nameof(ProcessParametersTablesViewSource)); + _jobsViewSource = value; RaisePropertyChanged(nameof(JobsViewSource)); } } - private ObservableCollection _processparameterstablesgroups; + private ObservableCollection _linearmassdensityunits; /// - /// Gets or sets the ProcessParametersTablesGroups. + /// Gets or sets the LinearMassDensityUnits. /// - public ObservableCollection ProcessParametersTablesGroups + public ObservableCollection LinearMassDensityUnits { get { - return _processparameterstablesgroups; + return _linearmassdensityunits; } set { - _processparameterstablesgroups = value; RaisePropertyChanged(nameof(ProcessParametersTablesGroups)); + _linearmassdensityunits = value; RaisePropertyChanged(nameof(LinearMassDensityUnits)); } } - private ICollectionView _processparameterstablesgroupsViewSource; + private ICollectionView _linearmassdensityunitsViewSource; /// - /// Gets or sets the ProcessParametersTablesGroups View Source. + /// Gets or sets the LinearMassDensityUnits View Source. /// - public ICollectionView ProcessParametersTablesGroupsViewSource + public ICollectionView LinearMassDensityUnitsViewSource { get { - return _processparameterstablesgroupsViewSource; + return _linearmassdensityunitsViewSource; } set { - _processparameterstablesgroupsViewSource = value; RaisePropertyChanged(nameof(ProcessParametersTablesGroupsViewSource)); + _linearmassdensityunitsViewSource = value; RaisePropertyChanged(nameof(LinearMassDensityUnitsViewSource)); } } - private ObservableCollection _publishedprocedureprojects; + private ObservableCollection _liquidtypes; /// - /// Gets or sets the PublishedProcedureProjects. + /// Gets or sets the LiquidTypes. /// - public ObservableCollection PublishedProcedureProjects + public ObservableCollection LiquidTypes { get { - return _publishedprocedureprojects; + return _liquidtypes; } set { - _publishedprocedureprojects = value; RaisePropertyChanged(nameof(PublishedProcedureProjects)); + _liquidtypes = value; RaisePropertyChanged(nameof(LiquidTypes)); } } - private ICollectionView _publishedprocedureprojectsViewSource; + private ICollectionView _liquidtypesViewSource; /// - /// Gets or sets the PublishedProcedureProjects View Source. + /// Gets or sets the LiquidTypes View Source. /// - public ICollectionView PublishedProcedureProjectsViewSource + public ICollectionView LiquidTypesViewSource { get { - return _publishedprocedureprojectsViewSource; + return _liquidtypesViewSource; } set { - _publishedprocedureprojectsViewSource = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsViewSource)); + _liquidtypesViewSource = value; RaisePropertyChanged(nameof(LiquidTypesViewSource)); } } - private ObservableCollection _publishedprocedureprojectsversions; + private ObservableCollection _liquidtypesrmls; /// - /// Gets or sets the PublishedProcedureProjectsVersions. + /// Gets or sets the LiquidTypesRmls. /// - public ObservableCollection PublishedProcedureProjectsVersions + public ObservableCollection LiquidTypesRmls { get { - return _publishedprocedureprojectsversions; + return _liquidtypesrmls; } set { - _publishedprocedureprojectsversions = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsVersions)); + _liquidtypesrmls = value; RaisePropertyChanged(nameof(LiquidTypesRmls)); } } - private ICollectionView _publishedprocedureprojectsversionsViewSource; + private ICollectionView _liquidtypesrmlsViewSource; /// - /// Gets or sets the PublishedProcedureProjectsVersions View Source. + /// Gets or sets the LiquidTypesRmls View Source. /// - public ICollectionView PublishedProcedureProjectsVersionsViewSource + public ICollectionView LiquidTypesRmlsViewSource { get { - return _publishedprocedureprojectsversionsViewSource; + return _liquidtypesrmlsViewSource; } set { - _publishedprocedureprojectsversionsViewSource = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsVersionsViewSource)); + _liquidtypesrmlsViewSource = value; RaisePropertyChanged(nameof(LiquidTypesRmlsViewSource)); } } - private ObservableCollection _rmlextensiontestresults; + private ObservableCollection _machineprototypes; /// - /// Gets or sets the RmlExtensionTestResults. + /// Gets or sets the MachinePrototypes. /// - public ObservableCollection RmlExtensionTestResults + public ObservableCollection MachinePrototypes { get { - return _rmlextensiontestresults; + return _machineprototypes; } set { - _rmlextensiontestresults = value; RaisePropertyChanged(nameof(RmlExtensionTestResults)); + _machineprototypes = value; RaisePropertyChanged(nameof(MachinePrototypes)); } } - private ICollectionView _rmlextensiontestresultsViewSource; + private ICollectionView _machineprototypesViewSource; /// - /// Gets or sets the RmlExtensionTestResults View Source. + /// Gets or sets the MachinePrototypes View Source. /// - public ICollectionView RmlExtensionTestResultsViewSource + public ICollectionView MachinePrototypesViewSource { get { - return _rmlextensiontestresultsViewSource; + return _machineprototypesViewSource; } set { - _rmlextensiontestresultsViewSource = value; RaisePropertyChanged(nameof(RmlExtensionTestResultsViewSource)); + _machineprototypesViewSource = value; RaisePropertyChanged(nameof(MachinePrototypesViewSource)); } } - private ObservableCollection _rmls; + private ObservableCollection _machinestudioversions; /// - /// Gets or sets the Rmls. + /// Gets or sets the MachineStudioVersions. /// - public ObservableCollection Rmls + public ObservableCollection MachineStudioVersions { get { - return _rmls; + return _machinestudioversions; } set { - _rmls = value; RaisePropertyChanged(nameof(Rmls)); + _machinestudioversions = value; RaisePropertyChanged(nameof(MachineStudioVersions)); } } - private ICollectionView _rmlsViewSource; + private ICollectionView _machinestudioversionsViewSource; /// - /// Gets or sets the Rmls View Source. + /// Gets or sets the MachineStudioVersions View Source. /// - public ICollectionView RmlsViewSource + public ICollectionView MachineStudioVersionsViewSource { get { - return _rmlsViewSource; + return _machinestudioversionsViewSource; } set { - _rmlsViewSource = value; RaisePropertyChanged(nameof(RmlsViewSource)); + _machinestudioversionsViewSource = value; RaisePropertyChanged(nameof(MachineStudioVersionsViewSource)); } } - private ObservableCollection _rmlsextensions; + private ObservableCollection _machineversions; /// - /// Gets or sets the RmlsExtensions. + /// Gets or sets the MachineVersions. /// - public ObservableCollection RmlsExtensions + public ObservableCollection MachineVersions { get { - return _rmlsextensions; + return _machineversions; } set { - _rmlsextensions = value; RaisePropertyChanged(nameof(RmlsExtensions)); + _machineversions = value; RaisePropertyChanged(nameof(MachineVersions)); } } - private ICollectionView _rmlsextensionsViewSource; + private ICollectionView _machineversionsViewSource; /// - /// Gets or sets the RmlsExtensions View Source. + /// Gets or sets the MachineVersions View Source. /// - public ICollectionView RmlsExtensionsViewSource + public ICollectionView MachineVersionsViewSource { get { - return _rmlsextensionsViewSource; + return _machineversionsViewSource; } set { - _rmlsextensionsViewSource = value; RaisePropertyChanged(nameof(RmlsExtensionsViewSource)); + _machineversionsViewSource = value; RaisePropertyChanged(nameof(MachineVersionsViewSource)); } } - private ObservableCollection _rmlsspools; + private ObservableCollection _machines; /// - /// Gets or sets the RmlsSpools. + /// Gets or sets the Machines. /// - public ObservableCollection RmlsSpools + public ObservableCollection Machines { get { - return _rmlsspools; + return _machines; } set { - _rmlsspools = value; RaisePropertyChanged(nameof(RmlsSpools)); + _machines = value; RaisePropertyChanged(nameof(Machines)); } } - private ICollectionView _rmlsspoolsViewSource; + private ICollectionView _machinesViewSource; /// - /// Gets or sets the RmlsSpools View Source. + /// Gets or sets the Machines View Source. /// - public ICollectionView RmlsSpoolsViewSource + public ICollectionView MachinesViewSource { get { - return _rmlsspoolsViewSource; + return _machinesViewSource; } set { - _rmlsspoolsViewSource = value; RaisePropertyChanged(nameof(RmlsSpoolsViewSource)); + _machinesViewSource = value; RaisePropertyChanged(nameof(MachinesViewSource)); } } - private ObservableCollection _roles; + private ObservableCollection _machinesevents; /// - /// Gets or sets the Roles. + /// Gets or sets the MachinesEvents. /// - public ObservableCollection Roles + public ObservableCollection MachinesEvents { get { - return _roles; + return _machinesevents; } set { - _roles = value; RaisePropertyChanged(nameof(Roles)); + _machinesevents = value; RaisePropertyChanged(nameof(MachinesEvents)); } } - private ICollectionView _rolesViewSource; + private ICollectionView _machineseventsViewSource; /// - /// Gets or sets the Roles View Source. + /// Gets or sets the MachinesEvents View Source. /// - public ICollectionView RolesViewSource + public ICollectionView MachinesEventsViewSource { get { - return _rolesViewSource; + return _machineseventsViewSource; } set { - _rolesViewSource = value; RaisePropertyChanged(nameof(RolesViewSource)); + _machineseventsViewSource = value; RaisePropertyChanged(nameof(MachinesEventsViewSource)); } } - private ObservableCollection _rolespermissions; + private ObservableCollection _mediaconditions; /// - /// Gets or sets the RolesPermissions. + /// Gets or sets the MediaConditions. /// - public ObservableCollection RolesPermissions + public ObservableCollection MediaConditions { get { - return _rolespermissions; + return _mediaconditions; } set { - _rolespermissions = value; RaisePropertyChanged(nameof(RolesPermissions)); + _mediaconditions = value; RaisePropertyChanged(nameof(MediaConditions)); } } - private ICollectionView _rolespermissionsViewSource; + private ICollectionView _mediaconditionsViewSource; /// - /// Gets or sets the RolesPermissions View Source. + /// Gets or sets the MediaConditions View Source. /// - public ICollectionView RolesPermissionsViewSource + public ICollectionView MediaConditionsViewSource { get { - return _rolespermissionsViewSource; + return _mediaconditionsViewSource; } set { - _rolespermissionsViewSource = value; RaisePropertyChanged(nameof(RolesPermissionsViewSource)); + _mediaconditionsViewSource = value; RaisePropertyChanged(nameof(MediaConditionsViewSource)); } } - private ObservableCollection _rubbingresults; + private ObservableCollection _mediamaterials; /// - /// Gets or sets the RubbingResults. + /// Gets or sets the MediaMaterials. /// - public ObservableCollection RubbingResults + public ObservableCollection MediaMaterials { get { - return _rubbingresults; + return _mediamaterials; } set { - _rubbingresults = value; RaisePropertyChanged(nameof(RubbingResults)); + _mediamaterials = value; RaisePropertyChanged(nameof(MediaMaterials)); } } - private ICollectionView _rubbingresultsViewSource; + private ICollectionView _mediamaterialsViewSource; /// - /// Gets or sets the RubbingResults View Source. + /// Gets or sets the MediaMaterials View Source. /// - public ICollectionView RubbingResultsViewSource + public ICollectionView MediaMaterialsViewSource { get { - return _rubbingresultsViewSource; + return _mediamaterialsViewSource; } set { - _rubbingresultsViewSource = value; RaisePropertyChanged(nameof(RubbingResultsViewSource)); + _mediamaterialsViewSource = value; RaisePropertyChanged(nameof(MediaMaterialsViewSource)); } } - private ObservableCollection _segments; + private ObservableCollection _mediapurposes; /// - /// Gets or sets the Segments. + /// Gets or sets the MediaPurposes. /// - public ObservableCollection Segments + public ObservableCollection MediaPurposes { get { - return _segments; + return _mediapurposes; } set { - _segments = value; RaisePropertyChanged(nameof(Segments)); + _mediapurposes = value; RaisePropertyChanged(nameof(MediaPurposes)); } } - private ICollectionView _segmentsViewSource; + private ICollectionView _mediapurposesViewSource; /// - /// Gets or sets the Segments View Source. + /// Gets or sets the MediaPurposes View Source. /// - public ICollectionView SegmentsViewSource + public ICollectionView MediaPurposesViewSource { get { - return _segmentsViewSource; + return _mediapurposesViewSource; } set { - _segmentsViewSource = value; RaisePropertyChanged(nameof(SegmentsViewSource)); + _mediapurposesViewSource = value; RaisePropertyChanged(nameof(MediaPurposesViewSource)); } } - private ObservableCollection _sites; + private ObservableCollection _midtanktypes; /// - /// Gets or sets the Sites. + /// Gets or sets the MidTankTypes. /// - public ObservableCollection Sites + public ObservableCollection MidTankTypes { get { - return _sites; + return _midtanktypes; } set { - _sites = value; RaisePropertyChanged(nameof(Sites)); + _midtanktypes = value; RaisePropertyChanged(nameof(MidTankTypes)); } } - private ICollectionView _sitesViewSource; + private ICollectionView _midtanktypesViewSource; /// - /// Gets or sets the Sites View Source. + /// Gets or sets the MidTankTypes View Source. /// - public ICollectionView SitesViewSource + public ICollectionView MidTankTypesViewSource { get { - return _sitesViewSource; + return _midtanktypesViewSource; } set { - _sitesViewSource = value; RaisePropertyChanged(nameof(SitesViewSource)); + _midtanktypesViewSource = value; RaisePropertyChanged(nameof(MidTankTypesViewSource)); } } - private ObservableCollection _sitescatalogs; + private ObservableCollection _organizations; /// - /// Gets or sets the SitesCatalogs. + /// Gets or sets the Organizations. /// - public ObservableCollection SitesCatalogs + public ObservableCollection Organizations { get { - return _sitescatalogs; + return _organizations; } set { - _sitescatalogs = value; RaisePropertyChanged(nameof(SitesCatalogs)); + _organizations = value; RaisePropertyChanged(nameof(Organizations)); } } - private ICollectionView _sitescatalogsViewSource; + private ICollectionView _organizationsViewSource; /// - /// Gets or sets the SitesCatalogs View Source. + /// Gets or sets the Organizations View Source. /// - public ICollectionView SitesCatalogsViewSource + public ICollectionView OrganizationsViewSource { get { - return _sitescatalogsViewSource; + return _organizationsViewSource; } set { - _sitescatalogsViewSource = value; RaisePropertyChanged(nameof(SitesCatalogsViewSource)); + _organizationsViewSource = value; RaisePropertyChanged(nameof(OrganizationsViewSource)); } } - private ObservableCollection _sitesrmls; + private ObservableCollection _permissions; /// - /// Gets or sets the SitesRmls. + /// Gets or sets the Permissions. /// - public ObservableCollection SitesRmls + public ObservableCollection Permissions { get { - return _sitesrmls; + return _permissions; } set { - _sitesrmls = value; RaisePropertyChanged(nameof(SitesRmls)); + _permissions = value; RaisePropertyChanged(nameof(Permissions)); } } - private ICollectionView _sitesrmlsViewSource; + private ICollectionView _permissionsViewSource; /// - /// Gets or sets the SitesRmls View Source. + /// Gets or sets the Permissions View Source. /// - public ICollectionView SitesRmlsViewSource + public ICollectionView PermissionsViewSource { get { - return _sitesrmlsViewSource; + return _permissionsViewSource; } set { - _sitesrmlsViewSource = value; RaisePropertyChanged(nameof(SitesRmlsViewSource)); + _permissionsViewSource = value; RaisePropertyChanged(nameof(PermissionsViewSource)); } } - private ObservableCollection _spooltypes; + private ObservableCollection _processparameterstables; /// - /// Gets or sets the SpoolTypes. + /// Gets or sets the ProcessParametersTables. /// - public ObservableCollection SpoolTypes + public ObservableCollection ProcessParametersTables { get { - return _spooltypes; + return _processparameterstables; } set { - _spooltypes = value; RaisePropertyChanged(nameof(SpoolTypes)); + _processparameterstables = value; RaisePropertyChanged(nameof(ProcessParametersTables)); } } - private ICollectionView _spooltypesViewSource; + private ICollectionView _processparameterstablesViewSource; /// - /// Gets or sets the SpoolTypes View Source. + /// Gets or sets the ProcessParametersTables View Source. /// - public ICollectionView SpoolTypesViewSource + public ICollectionView ProcessParametersTablesViewSource { get { - return _spooltypesViewSource; + return _processparameterstablesViewSource; } set { - _spooltypesViewSource = value; RaisePropertyChanged(nameof(SpoolTypesViewSource)); + _processparameterstablesViewSource = value; RaisePropertyChanged(nameof(ProcessParametersTablesViewSource)); } } - private ObservableCollection _spools; + private ObservableCollection _processparameterstablesgroups; /// - /// Gets or sets the Spools. + /// Gets or sets the ProcessParametersTablesGroups. /// - public ObservableCollection Spools + public ObservableCollection ProcessParametersTablesGroups { get { - return _spools; + return _processparameterstablesgroups; } set { - _spools = value; RaisePropertyChanged(nameof(Spools)); + _processparameterstablesgroups = value; RaisePropertyChanged(nameof(ProcessParametersTablesGroups)); } } - private ICollectionView _spoolsViewSource; + private ICollectionView _processparameterstablesgroupsViewSource; /// - /// Gets or sets the Spools View Source. + /// Gets or sets the ProcessParametersTablesGroups View Source. /// - public ICollectionView SpoolsViewSource + public ICollectionView ProcessParametersTablesGroupsViewSource { get { - return _spoolsViewSource; + return _processparameterstablesgroupsViewSource; } set { - _spoolsViewSource = value; RaisePropertyChanged(nameof(SpoolsViewSource)); + _processparameterstablesgroupsViewSource = value; RaisePropertyChanged(nameof(ProcessParametersTablesGroupsViewSource)); } } - private ObservableCollection _sysdiagrams; + private ObservableCollection _publishedprocedureprojects; /// - /// Gets or sets the Sysdiagrams. + /// Gets or sets the PublishedProcedureProjects. /// - public ObservableCollection Sysdiagrams + public ObservableCollection PublishedProcedureProjects { get { - return _sysdiagrams; + return _publishedprocedureprojects; } set { - _sysdiagrams = value; RaisePropertyChanged(nameof(Sysdiagrams)); + _publishedprocedureprojects = value; RaisePropertyChanged(nameof(PublishedProcedureProjects)); } } - private ICollectionView _sysdiagramsViewSource; + private ICollectionView _publishedprocedureprojectsViewSource; /// - /// Gets or sets the Sysdiagrams View Source. + /// Gets or sets the PublishedProcedureProjects View Source. /// - public ICollectionView SysdiagramsViewSource + public ICollectionView PublishedProcedureProjectsViewSource { get { - return _sysdiagramsViewSource; + return _publishedprocedureprojectsViewSource; } set { - _sysdiagramsViewSource = value; RaisePropertyChanged(nameof(SysdiagramsViewSource)); + _publishedprocedureprojectsViewSource = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsViewSource)); } } - private ObservableCollection _tangoupdates; + private ObservableCollection _publishedprocedureprojectsversions; /// - /// Gets or sets the TangoUpdates. + /// Gets or sets the PublishedProcedureProjectsVersions. /// - public ObservableCollection TangoUpdates + public ObservableCollection PublishedProcedureProjectsVersions { get { - return _tangoupdates; + return _publishedprocedureprojectsversions; } set { - _tangoupdates = value; RaisePropertyChanged(nameof(TangoUpdates)); + _publishedprocedureprojectsversions = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsVersions)); } } - private ICollectionView _tangoupdatesViewSource; + private ICollectionView _publishedprocedureprojectsversionsViewSource; /// - /// Gets or sets the TangoUpdates View Source. + /// Gets or sets the PublishedProcedureProjectsVersions View Source. /// - public ICollectionView TangoUpdatesViewSource + public ICollectionView PublishedProcedureProjectsVersionsViewSource { get { - return _tangoupdatesViewSource; + return _publishedprocedureprojectsversionsViewSource; } set { - _tangoupdatesViewSource = value; RaisePropertyChanged(nameof(TangoUpdatesViewSource)); + _publishedprocedureprojectsversionsViewSource = value; RaisePropertyChanged(nameof(PublishedProcedureProjectsVersionsViewSource)); } } - private ObservableCollection _tangoversions; + private ObservableCollection _rmls; /// - /// Gets or sets the TangoVersions. + /// Gets or sets the Rmls. /// - public ObservableCollection TangoVersions + public ObservableCollection Rmls { get { - return _tangoversions; + return _rmls; } set { - _tangoversions = value; RaisePropertyChanged(nameof(TangoVersions)); + _rmls = value; RaisePropertyChanged(nameof(Rmls)); } } - private ICollectionView _tangoversionsViewSource; + private ICollectionView _rmlsViewSource; /// - /// Gets or sets the TangoVersions View Source. + /// Gets or sets the Rmls View Source. /// - public ICollectionView TangoVersionsViewSource + public ICollectionView RmlsViewSource { get { - return _tangoversionsViewSource; + return _rmlsViewSource; } set { - _tangoversionsViewSource = value; RaisePropertyChanged(nameof(TangoVersionsViewSource)); + _rmlsViewSource = value; RaisePropertyChanged(nameof(RmlsViewSource)); } } - private ObservableCollection _techcontrollers; + private ObservableCollection _rmlsspools; /// - /// Gets or sets the TechControllers. + /// Gets or sets the RmlsSpools. /// - public ObservableCollection TechControllers + public ObservableCollection RmlsSpools { get { - return _techcontrollers; + return _rmlsspools; } set { - _techcontrollers = value; RaisePropertyChanged(nameof(TechControllers)); + _rmlsspools = value; RaisePropertyChanged(nameof(RmlsSpools)); } } - private ICollectionView _techcontrollersViewSource; + private ICollectionView _rmlsspoolsViewSource; /// - /// Gets or sets the TechControllers View Source. + /// Gets or sets the RmlsSpools View Source. /// - public ICollectionView TechControllersViewSource + public ICollectionView RmlsSpoolsViewSource { get { - return _techcontrollersViewSource; + return _rmlsspoolsViewSource; } set { - _techcontrollersViewSource = value; RaisePropertyChanged(nameof(TechControllersViewSource)); + _rmlsspoolsViewSource = value; RaisePropertyChanged(nameof(RmlsSpoolsViewSource)); } } - private ObservableCollection _techdispensers; + private ObservableCollection _roles; /// - /// Gets or sets the TechDispensers. + /// Gets or sets the Roles. /// - public ObservableCollection TechDispensers + public ObservableCollection Roles { get { - return _techdispensers; + return _roles; } set { - _techdispensers = value; RaisePropertyChanged(nameof(TechDispensers)); + _roles = value; RaisePropertyChanged(nameof(Roles)); } } - private ICollectionView _techdispensersViewSource; + private ICollectionView _rolesViewSource; /// - /// Gets or sets the TechDispensers View Source. + /// Gets or sets the Roles View Source. /// - public ICollectionView TechDispensersViewSource + public ICollectionView RolesViewSource { get { - return _techdispensersViewSource; + return _rolesViewSource; } set { - _techdispensersViewSource = value; RaisePropertyChanged(nameof(TechDispensersViewSource)); + _rolesViewSource = value; RaisePropertyChanged(nameof(RolesViewSource)); } } - private ObservableCollection _techheaters; + private ObservableCollection _rolespermissions; /// - /// Gets or sets the TechHeaters. + /// Gets or sets the RolesPermissions. /// - public ObservableCollection TechHeaters + public ObservableCollection RolesPermissions { get { - return _techheaters; + return _rolespermissions; } set { - _techheaters = value; RaisePropertyChanged(nameof(TechHeaters)); + _rolespermissions = value; RaisePropertyChanged(nameof(RolesPermissions)); } } - private ICollectionView _techheatersViewSource; + private ICollectionView _rolespermissionsViewSource; /// - /// Gets or sets the TechHeaters View Source. + /// Gets or sets the RolesPermissions View Source. /// - public ICollectionView TechHeatersViewSource + public ICollectionView RolesPermissionsViewSource { get { - return _techheatersViewSource; + return _rolespermissionsViewSource; } set { - _techheatersViewSource = value; RaisePropertyChanged(nameof(TechHeatersViewSource)); + _rolespermissionsViewSource = value; RaisePropertyChanged(nameof(RolesPermissionsViewSource)); } } - private ObservableCollection _techios; + private ObservableCollection _segments; /// - /// Gets or sets the TechIos. + /// Gets or sets the Segments. /// - public ObservableCollection TechIos + public ObservableCollection Segments { get { - return _techios; + return _segments; } set { - _techios = value; RaisePropertyChanged(nameof(TechIos)); + _segments = value; RaisePropertyChanged(nameof(Segments)); } } - private ICollectionView _techiosViewSource; + private ICollectionView _segmentsViewSource; /// - /// Gets or sets the TechIos View Source. + /// Gets or sets the Segments View Source. /// - public ICollectionView TechIosViewSource + public ICollectionView SegmentsViewSource { get { - return _techiosViewSource; + return _segmentsViewSource; } set { - _techiosViewSource = value; RaisePropertyChanged(nameof(TechIosViewSource)); + _segmentsViewSource = value; RaisePropertyChanged(nameof(SegmentsViewSource)); } } - private ObservableCollection _techmonitors; + private ObservableCollection _sites; /// - /// Gets or sets the TechMonitors. + /// Gets or sets the Sites. /// - public ObservableCollection TechMonitors + public ObservableCollection Sites { get { - return _techmonitors; + return _sites; } set { - _techmonitors = value; RaisePropertyChanged(nameof(TechMonitors)); + _sites = value; RaisePropertyChanged(nameof(Sites)); } } - private ICollectionView _techmonitorsViewSource; + private ICollectionView _sitesViewSource; /// - /// Gets or sets the TechMonitors View Source. + /// Gets or sets the Sites View Source. /// - public ICollectionView TechMonitorsViewSource + public ICollectionView SitesViewSource { get { - return _techmonitorsViewSource; + return _sitesViewSource; } set { - _techmonitorsViewSource = value; RaisePropertyChanged(nameof(TechMonitorsViewSource)); + _sitesViewSource = value; RaisePropertyChanged(nameof(SitesViewSource)); } } - private ObservableCollection _techvalves; + private ObservableCollection _sitescatalogs; /// - /// Gets or sets the TechValves. + /// Gets or sets the SitesCatalogs. /// - public ObservableCollection TechValves + public ObservableCollection SitesCatalogs { get { - return _techvalves; + return _sitescatalogs; } set { - _techvalves = value; RaisePropertyChanged(nameof(TechValves)); + _sitescatalogs = value; RaisePropertyChanged(nameof(SitesCatalogs)); } } - private ICollectionView _techvalvesViewSource; + private ICollectionView _sitescatalogsViewSource; /// - /// Gets or sets the TechValves View Source. + /// Gets or sets the SitesCatalogs View Source. /// - public ICollectionView TechValvesViewSource + public ICollectionView SitesCatalogsViewSource { get { - return _techvalvesViewSource; + return _sitescatalogsViewSource; } set { - _techvalvesViewSource = value; RaisePropertyChanged(nameof(TechValvesViewSource)); + _sitescatalogsViewSource = value; RaisePropertyChanged(nameof(SitesCatalogsViewSource)); } } - private ObservableCollection _tensileresults; + private ObservableCollection _sitesrmls; /// - /// Gets or sets the TensileResults. + /// Gets or sets the SitesRmls. /// - public ObservableCollection TensileResults + public ObservableCollection SitesRmls { get { - return _tensileresults; + return _sitesrmls; } set { - _tensileresults = value; RaisePropertyChanged(nameof(TensileResults)); + _sitesrmls = value; RaisePropertyChanged(nameof(SitesRmls)); } } - private ICollectionView _tensileresultsViewSource; + private ICollectionView _sitesrmlsViewSource; /// - /// Gets or sets the TensileResults View Source. + /// Gets or sets the SitesRmls View Source. /// - public ICollectionView TensileResultsViewSource + public ICollectionView SitesRmlsViewSource { get { - return _tensileresultsViewSource; + return _sitesrmlsViewSource; } set { - _tensileresultsViewSource = value; RaisePropertyChanged(nameof(TensileResultsViewSource)); + _sitesrmlsViewSource = value; RaisePropertyChanged(nameof(SitesRmlsViewSource)); } } - private ObservableCollection _users; + private ObservableCollection _spooltypes; /// - /// Gets or sets the Users. + /// Gets or sets the SpoolTypes. /// - public ObservableCollection Users + public ObservableCollection SpoolTypes { get { - return _users; + return _spooltypes; } set { - _users = value; RaisePropertyChanged(nameof(Users)); + _spooltypes = value; RaisePropertyChanged(nameof(SpoolTypes)); } } - private ICollectionView _usersViewSource; + private ICollectionView _spooltypesViewSource; /// - /// Gets or sets the Users View Source. + /// Gets or sets the SpoolTypes View Source. /// - public ICollectionView UsersViewSource + public ICollectionView SpoolTypesViewSource { get { - return _usersViewSource; + return _spooltypesViewSource; } set { - _usersViewSource = value; RaisePropertyChanged(nameof(UsersViewSource)); + _spooltypesViewSource = value; RaisePropertyChanged(nameof(SpoolTypesViewSource)); } } - private ObservableCollection _usersroles; + private ObservableCollection _spools; /// - /// Gets or sets the UsersRoles. + /// Gets or sets the Spools. /// - public ObservableCollection UsersRoles + public ObservableCollection Spools { get { - return _usersroles; + return _spools; } set { - _usersroles = value; RaisePropertyChanged(nameof(UsersRoles)); + _spools = value; RaisePropertyChanged(nameof(Spools)); } } - private ICollectionView _usersrolesViewSource; + private ICollectionView _spoolsViewSource; /// - /// Gets or sets the UsersRoles View Source. + /// Gets or sets the Spools View Source. /// - public ICollectionView UsersRolesViewSource + public ICollectionView SpoolsViewSource { get { - return _usersrolesViewSource; + return _spoolsViewSource; } set { - _usersrolesViewSource = value; RaisePropertyChanged(nameof(UsersRolesViewSource)); + _spoolsViewSource = value; RaisePropertyChanged(nameof(SpoolsViewSource)); } } - private ObservableCollection _windingmethods; + private ObservableCollection _sysdiagrams; /// - /// Gets or sets the WindingMethods. + /// Gets or sets the Sysdiagrams. /// - public ObservableCollection WindingMethods + public ObservableCollection Sysdiagrams { get { - return _windingmethods; + return _sysdiagrams; } set { - _windingmethods = value; RaisePropertyChanged(nameof(WindingMethods)); + _sysdiagrams = value; RaisePropertyChanged(nameof(Sysdiagrams)); } } - private ICollectionView _windingmethodsViewSource; + private ICollectionView _sysdiagramsViewSource; /// - /// Gets or sets the WindingMethods View Source. + /// Gets or sets the Sysdiagrams View Source. /// - public ICollectionView WindingMethodsViewSource + public ICollectionView SysdiagramsViewSource { get { - return _windingmethodsViewSource; + return _sysdiagramsViewSource; } set { - _windingmethodsViewSource = value; RaisePropertyChanged(nameof(WindingMethodsViewSource)); + _sysdiagramsViewSource = value; RaisePropertyChanged(nameof(SysdiagramsViewSource)); } } - private ObservableCollection _yarnapplications; + private ObservableCollection _tangoupdates; /// - /// Gets or sets the YarnApplications. + /// Gets or sets the TangoUpdates. /// - public ObservableCollection YarnApplications + public ObservableCollection TangoUpdates { get { - return _yarnapplications; + return _tangoupdates; } set { - _yarnapplications = value; RaisePropertyChanged(nameof(YarnApplications)); + _tangoupdates = value; RaisePropertyChanged(nameof(TangoUpdates)); } } - private ICollectionView _yarnapplicationsViewSource; + private ICollectionView _tangoupdatesViewSource; /// - /// Gets or sets the YarnApplications View Source. + /// Gets or sets the TangoUpdates View Source. /// - public ICollectionView YarnApplicationsViewSource + public ICollectionView TangoUpdatesViewSource { get { - return _yarnapplicationsViewSource; + return _tangoupdatesViewSource; } set { - _yarnapplicationsViewSource = value; RaisePropertyChanged(nameof(YarnApplicationsViewSource)); + _tangoupdatesViewSource = value; RaisePropertyChanged(nameof(TangoUpdatesViewSource)); } } - private ObservableCollection _yarnbrands; + private ObservableCollection _tangoversions; /// - /// Gets or sets the YarnBrands. + /// Gets or sets the TangoVersions. /// - public ObservableCollection YarnBrands + public ObservableCollection TangoVersions { get { - return _yarnbrands; + return _tangoversions; } set { - _yarnbrands = value; RaisePropertyChanged(nameof(YarnBrands)); + _tangoversions = value; RaisePropertyChanged(nameof(TangoVersions)); } } - private ICollectionView _yarnbrandsViewSource; + private ICollectionView _tangoversionsViewSource; /// - /// Gets or sets the YarnBrands View Source. + /// Gets or sets the TangoVersions View Source. /// - public ICollectionView YarnBrandsViewSource + public ICollectionView TangoVersionsViewSource { get { - return _yarnbrandsViewSource; + return _tangoversionsViewSource; } set { - _yarnbrandsViewSource = value; RaisePropertyChanged(nameof(YarnBrandsViewSource)); + _tangoversionsViewSource = value; RaisePropertyChanged(nameof(TangoVersionsViewSource)); } } - private ObservableCollection _yarnfamilies; + private ObservableCollection _techcontrollers; /// - /// Gets or sets the YarnFamilies. + /// Gets or sets the TechControllers. /// - public ObservableCollection YarnFamilies + public ObservableCollection TechControllers { get { - return _yarnfamilies; + return _techcontrollers; } set { - _yarnfamilies = value; RaisePropertyChanged(nameof(YarnFamilies)); + _techcontrollers = value; RaisePropertyChanged(nameof(TechControllers)); } } - private ICollectionView _yarnfamiliesViewSource; + private ICollectionView _techcontrollersViewSource; /// - /// Gets or sets the YarnFamilies View Source. + /// Gets or sets the TechControllers View Source. /// - public ICollectionView YarnFamiliesViewSource + public ICollectionView TechControllersViewSource { get { - return _yarnfamiliesViewSource; + return _techcontrollersViewSource; } set { - _yarnfamiliesViewSource = value; RaisePropertyChanged(nameof(YarnFamiliesViewSource)); + _techcontrollersViewSource = value; RaisePropertyChanged(nameof(TechControllersViewSource)); } } - private ObservableCollection _yarnglosslevels; + private ObservableCollection _techdispensers; /// - /// Gets or sets the YarnGlossLevels. + /// Gets or sets the TechDispensers. /// - public ObservableCollection YarnGlossLevels + public ObservableCollection TechDispensers { get { - return _yarnglosslevels; + return _techdispensers; } set { - _yarnglosslevels = value; RaisePropertyChanged(nameof(YarnGlossLevels)); + _techdispensers = value; RaisePropertyChanged(nameof(TechDispensers)); } } - private ICollectionView _yarnglosslevelsViewSource; + private ICollectionView _techdispensersViewSource; /// - /// Gets or sets the YarnGlossLevels View Source. + /// Gets or sets the TechDispensers View Source. /// - public ICollectionView YarnGlossLevelsViewSource + public ICollectionView TechDispensersViewSource { get { - return _yarnglosslevelsViewSource; + return _techdispensersViewSource; } set { - _yarnglosslevelsViewSource = value; RaisePropertyChanged(nameof(YarnGlossLevelsViewSource)); + _techdispensersViewSource = value; RaisePropertyChanged(nameof(TechDispensersViewSource)); } } - private ObservableCollection _yarngroups; + private ObservableCollection _techheaters; /// - /// Gets or sets the YarnGroups. + /// Gets or sets the TechHeaters. /// - public ObservableCollection YarnGroups + public ObservableCollection TechHeaters { get { - return _yarngroups; + return _techheaters; } set { - _yarngroups = value; RaisePropertyChanged(nameof(YarnGroups)); + _techheaters = value; RaisePropertyChanged(nameof(TechHeaters)); } } - private ICollectionView _yarngroupsViewSource; + private ICollectionView _techheatersViewSource; /// - /// Gets or sets the YarnGroups View Source. + /// Gets or sets the TechHeaters View Source. /// - public ICollectionView YarnGroupsViewSource + public ICollectionView TechHeatersViewSource { get { - return _yarngroupsViewSource; + return _techheatersViewSource; } set { - _yarngroupsViewSource = value; RaisePropertyChanged(nameof(YarnGroupsViewSource)); + _techheatersViewSource = value; RaisePropertyChanged(nameof(TechHeatersViewSource)); } } - private ObservableCollection _yarnindustrysectors; + private ObservableCollection _techios; /// - /// Gets or sets the YarnIndustrysectors. + /// Gets or sets the TechIos. /// - public ObservableCollection YarnIndustrysectors + public ObservableCollection TechIos { get { - return _yarnindustrysectors; + return _techios; } set { - _yarnindustrysectors = value; RaisePropertyChanged(nameof(YarnIndustrysectors)); + _techios = value; RaisePropertyChanged(nameof(TechIos)); } } - private ICollectionView _yarnindustrysectorsViewSource; + private ICollectionView _techiosViewSource; /// - /// Gets or sets the YarnIndustrysectors View Source. + /// Gets or sets the TechIos View Source. /// - public ICollectionView YarnIndustrysectorsViewSource + public ICollectionView TechIosViewSource { get { - return _yarnindustrysectorsViewSource; + return _techiosViewSource; } set { - _yarnindustrysectorsViewSource = value; RaisePropertyChanged(nameof(YarnIndustrysectorsViewSource)); + _techiosViewSource = value; RaisePropertyChanged(nameof(TechIosViewSource)); } } - private ObservableCollection _yarnmanufacturers; + private ObservableCollection _techmonitors; /// - /// Gets or sets the YarnManufacturers. + /// Gets or sets the TechMonitors. /// - public ObservableCollection YarnManufacturers + public ObservableCollection TechMonitors { get { - return _yarnmanufacturers; + return _techmonitors; } set { - _yarnmanufacturers = value; RaisePropertyChanged(nameof(YarnManufacturers)); + _techmonitors = value; RaisePropertyChanged(nameof(TechMonitors)); } } - private ICollectionView _yarnmanufacturersViewSource; + private ICollectionView _techmonitorsViewSource; /// - /// Gets or sets the YarnManufacturers View Source. + /// Gets or sets the TechMonitors View Source. /// - public ICollectionView YarnManufacturersViewSource + public ICollectionView TechMonitorsViewSource { get { - return _yarnmanufacturersViewSource; + return _techmonitorsViewSource; } set { - _yarnmanufacturersViewSource = value; RaisePropertyChanged(nameof(YarnManufacturersViewSource)); + _techmonitorsViewSource = value; RaisePropertyChanged(nameof(TechMonitorsViewSource)); } } - private ObservableCollection _yarnsubfamilies; + private ObservableCollection _techvalves; /// - /// Gets or sets the YarnSubFamilies. + /// Gets or sets the TechValves. /// - public ObservableCollection YarnSubFamilies + public ObservableCollection TechValves { get { - return _yarnsubfamilies; + return _techvalves; } set { - _yarnsubfamilies = value; RaisePropertyChanged(nameof(YarnSubFamilies)); + _techvalves = value; RaisePropertyChanged(nameof(TechValves)); } } - private ICollectionView _yarnsubfamiliesViewSource; + private ICollectionView _techvalvesViewSource; /// - /// Gets or sets the YarnSubFamilies View Source. + /// Gets or sets the TechValves View Source. /// - public ICollectionView YarnSubFamiliesViewSource + public ICollectionView TechValvesViewSource { get { - return _yarnsubfamiliesViewSource; + return _techvalvesViewSource; } set { - _yarnsubfamiliesViewSource = value; RaisePropertyChanged(nameof(YarnSubFamiliesViewSource)); + _techvalvesViewSource = value; RaisePropertyChanged(nameof(TechValvesViewSource)); } } - private ObservableCollection _yarntexturings; + private ObservableCollection _users; /// - /// Gets or sets the YarnTexturings. + /// Gets or sets the Users. /// - public ObservableCollection YarnTexturings + public ObservableCollection Users { get { - return _yarntexturings; + return _users; } set { - _yarntexturings = value; RaisePropertyChanged(nameof(YarnTexturings)); + _users = value; RaisePropertyChanged(nameof(Users)); } } - private ICollectionView _yarntexturingsViewSource; + private ICollectionView _usersViewSource; /// - /// Gets or sets the YarnTexturings View Source. + /// Gets or sets the Users View Source. /// - public ICollectionView YarnTexturingsViewSource + public ICollectionView UsersViewSource { get { - return _yarntexturingsViewSource; + return _usersViewSource; } set { - _yarntexturingsViewSource = value; RaisePropertyChanged(nameof(YarnTexturingsViewSource)); + _usersViewSource = value; RaisePropertyChanged(nameof(UsersViewSource)); } } - private ObservableCollection _yarntypes; + private ObservableCollection _usersroles; /// - /// Gets or sets the YarnTypes. + /// Gets or sets the UsersRoles. /// - public ObservableCollection YarnTypes + public ObservableCollection UsersRoles { get { - return _yarntypes; + return _usersroles; } set { - _yarntypes = value; RaisePropertyChanged(nameof(YarnTypes)); + _usersroles = value; RaisePropertyChanged(nameof(UsersRoles)); } } - private ICollectionView _yarntypesViewSource; + private ICollectionView _usersrolesViewSource; /// - /// Gets or sets the YarnTypes View Source. + /// Gets or sets the UsersRoles View Source. /// - public ICollectionView YarnTypesViewSource + public ICollectionView UsersRolesViewSource { get { - return _yarntypesViewSource; + return _usersrolesViewSource; } set { - _yarntypesViewSource = value; RaisePropertyChanged(nameof(YarnTypesViewSource)); + _usersrolesViewSource = value; RaisePropertyChanged(nameof(UsersRolesViewSource)); } } - private ObservableCollection _yarnwhiteshades; + private ObservableCollection _windingmethods; /// - /// Gets or sets the YarnWhiteShades. + /// Gets or sets the WindingMethods. /// - public ObservableCollection YarnWhiteShades + public ObservableCollection WindingMethods { get { - return _yarnwhiteshades; + return _windingmethods; } set { - _yarnwhiteshades = value; RaisePropertyChanged(nameof(YarnWhiteShades)); + _windingmethods = value; RaisePropertyChanged(nameof(WindingMethods)); } } - private ICollectionView _yarnwhiteshadesViewSource; + private ICollectionView _windingmethodsViewSource; /// - /// Gets or sets the YarnWhiteShades View Source. + /// Gets or sets the WindingMethods View Source. /// - public ICollectionView YarnWhiteShadesViewSource + public ICollectionView WindingMethodsViewSource { get { - return _yarnwhiteshadesViewSource; + return _windingmethodsViewSource; } set { - _yarnwhiteshadesViewSource = value; RaisePropertyChanged(nameof(YarnWhiteShadesViewSource)); + _windingmethodsViewSource = value; RaisePropertyChanged(nameof(WindingMethodsViewSource)); } } @@ -3877,6 +3913,42 @@ namespace Tango.BL SyncConfigurationsViewSource = CreateCollectionView(SyncConfigurations); + ColorProcessDataViewSource = CreateCollectionView(ColorProcessData); + + ColorProcessFactorsViewSource = CreateCollectionView(ColorProcessFactors); + + ColorProcessParametersViewSource = CreateCollectionView(ColorProcessParameters); + + RmlExtensionTestResultsViewSource = CreateCollectionView(RmlExtensionTestResults); + + RmlsExtensionsViewSource = CreateCollectionView(RmlsExtensions); + + RubbingResultsViewSource = CreateCollectionView(RubbingResults); + + TensileResultsViewSource = CreateCollectionView(TensileResults); + + YarnApplicationsViewSource = CreateCollectionView(YarnApplications); + + YarnBrandsViewSource = CreateCollectionView(YarnBrands); + + YarnFamiliesViewSource = CreateCollectionView(YarnFamilies); + + YarnGlossLevelsViewSource = CreateCollectionView(YarnGlossLevels); + + YarnGroupsViewSource = CreateCollectionView(YarnGroups); + + YarnIndustrysectorsViewSource = CreateCollectionView(YarnIndustrysectors); + + YarnManufacturersViewSource = CreateCollectionView(YarnManufacturers); + + YarnSubFamiliesViewSource = CreateCollectionView(YarnSubFamilies); + + YarnTexturingsViewSource = CreateCollectionView(YarnTexturings); + + YarnTypesViewSource = CreateCollectionView(YarnTypes); + + YarnWhiteShadesViewSource = CreateCollectionView(YarnWhiteShades); + ActionLogsViewSource = CreateCollectionView(ActionLogs); AddressesViewSource = CreateCollectionView(Addresses); @@ -3909,11 +3981,7 @@ namespace Tango.BL ColorCatalogsItemsRecipesViewSource = CreateCollectionView(ColorCatalogsItemsRecipes); - ColorProcessDataViewSource = CreateCollectionView(ColorProcessData); - - ColorProcessFactorsViewSource = CreateCollectionView(ColorProcessFactors); - - ColorProcessParametersViewSource = CreateCollectionView(ColorProcessParameters); + ColorProcessInkUptakeViewSource = CreateCollectionView(ColorProcessInkUptake); ColorSpacesViewSource = CreateCollectionView(ColorSpaces); @@ -4015,20 +4083,14 @@ namespace Tango.BL PublishedProcedureProjectsVersionsViewSource = CreateCollectionView(PublishedProcedureProjectsVersions); - RmlExtensionTestResultsViewSource = CreateCollectionView(RmlExtensionTestResults); - RmlsViewSource = CreateCollectionView(Rmls); - RmlsExtensionsViewSource = CreateCollectionView(RmlsExtensions); - RmlsSpoolsViewSource = CreateCollectionView(RmlsSpools); RolesViewSource = CreateCollectionView(Roles); RolesPermissionsViewSource = CreateCollectionView(RolesPermissions); - RubbingResultsViewSource = CreateCollectionView(RubbingResults); - SegmentsViewSource = CreateCollectionView(Segments); SitesViewSource = CreateCollectionView(Sites); @@ -4059,36 +4121,12 @@ namespace Tango.BL TechValvesViewSource = CreateCollectionView(TechValves); - TensileResultsViewSource = CreateCollectionView(TensileResults); - UsersViewSource = CreateCollectionView(Users); UsersRolesViewSource = CreateCollectionView(UsersRoles); WindingMethodsViewSource = CreateCollectionView(WindingMethods); - YarnApplicationsViewSource = CreateCollectionView(YarnApplications); - - YarnBrandsViewSource = CreateCollectionView(YarnBrands); - - YarnFamiliesViewSource = CreateCollectionView(YarnFamilies); - - YarnGlossLevelsViewSource = CreateCollectionView(YarnGlossLevels); - - YarnGroupsViewSource = CreateCollectionView(YarnGroups); - - YarnIndustrysectorsViewSource = CreateCollectionView(YarnIndustrysectors); - - YarnManufacturersViewSource = CreateCollectionView(YarnManufacturers); - - YarnSubFamiliesViewSource = CreateCollectionView(YarnSubFamilies); - - YarnTexturingsViewSource = CreateCollectionView(YarnTexturings); - - YarnTypesViewSource = CreateCollectionView(YarnTypes); - - YarnWhiteShadesViewSource = CreateCollectionView(YarnWhiteShades); - } } } diff --git a/Software/Visual_Studio/Tango.BL/Tango.BL.csproj b/Software/Visual_Studio/Tango.BL/Tango.BL.csproj index 35fd930f9..55f1cc8c2 100644 --- a/Software/Visual_Studio/Tango.BL/Tango.BL.csproj +++ b/Software/Visual_Studio/Tango.BL/Tango.BL.csproj @@ -181,6 +181,8 @@ + + @@ -384,6 +386,7 @@ + @@ -432,6 +435,7 @@ + @@ -522,6 +526,7 @@ + @@ -762,7 +767,7 @@ - + \ No newline at end of file diff --git a/Software/Visual_Studio/Tango.DAL.Remote/DB/COLOR_PROCESS_INK_UPTAKE.cs b/Software/Visual_Studio/Tango.DAL.Remote/DB/COLOR_PROCESS_INK_UPTAKE.cs new file mode 100644 index 000000000..20cd2fbc1 --- /dev/null +++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/COLOR_PROCESS_INK_UPTAKE.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// This code was generated from a template. +// +// Manual changes to this file may cause unexpected behavior in your application. +// Manual changes to this file will be overwritten if the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Tango.DAL.Remote.DB +{ + using System; + using System.Collections.Generic; + + public partial class COLOR_PROCESS_INK_UPTAKE + { + public int ID { get; set; } + public string GUID { get; set; } + public System.DateTime LAST_UPDATED { get; set; } + public string COLOR_PROCESS_PARAMETERS_GUID { get; set; } + public int INK_UPTAKE_ZONE { get; set; } + public Nullable INK_VALUE { get; set; } + + public virtual COLOR_PROCESS_PARAMETERS COLOR_PROCESS_PARAMETERS { get; set; } + } +} diff --git a/Software/Visual_Studio/Tango.DAL.Remote/DB/COLOR_PROCESS_PARAMETERS.cs b/Software/Visual_Studio/Tango.DAL.Remote/DB/COLOR_PROCESS_PARAMETERS.cs index e3ff8e462..9c4510ccd 100644 --- a/Software/Visual_Studio/Tango.DAL.Remote/DB/COLOR_PROCESS_PARAMETERS.cs +++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/COLOR_PROCESS_PARAMETERS.cs @@ -19,6 +19,7 @@ namespace Tango.DAL.Remote.DB { this.COLOR_PROCESS_DATA = new HashSet(); this.COLOR_PROCESS_FACTORS = new HashSet(); + this.COLOR_PROCESS_INK_UPTAKE = new HashSet(); } public int ID { get; set; } @@ -35,6 +36,8 @@ namespace Tango.DAL.Remote.DB [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection COLOR_PROCESS_FACTORS { get; set; } public virtual RMLS_EXTENSIONS RMLS_EXTENSIONS { get; set; } + [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] + public virtual ICollection COLOR_PROCESS_INK_UPTAKE { get; set; } public virtual MACHINE MACHINE { get; set; } } } diff --git a/Software/Visual_Studio/Tango.DAL.Remote/DB/MEDIA_MATERIALS.cs b/Software/Visual_Studio/Tango.DAL.Remote/DB/MEDIA_MATERIALS.cs index 9f08788ac..d54051db5 100644 --- a/Software/Visual_Studio/Tango.DAL.Remote/DB/MEDIA_MATERIALS.cs +++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/MEDIA_MATERIALS.cs @@ -25,6 +25,7 @@ namespace Tango.DAL.Remote.DB public System.DateTime LAST_UPDATED { get; set; } public string NAME { get; set; } public int CODE { get; set; } + public string DESCRIPTION { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection RMLS { get; set; } diff --git a/Software/Visual_Studio/Tango.DAL.Remote/DB/RUBBING_RESULTS.cs b/Software/Visual_Studio/Tango.DAL.Remote/DB/RUBBING_RESULTS.cs index 956852ad9..47e54fb92 100644 --- a/Software/Visual_Studio/Tango.DAL.Remote/DB/RUBBING_RESULTS.cs +++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/RUBBING_RESULTS.cs @@ -20,11 +20,9 @@ namespace Tango.DAL.Remote.DB public string RML_EXTENSION_TEST_RESULTS_GUID { get; set; } public Nullable COLOR { get; set; } public Nullable DELTAE_CIE_100 { get; set; } - public Nullable GS_100_MIN { get; set; } - public Nullable GS_100_MAX { get; set; } public Nullable DELTAE_CIE_200 { get; set; } - public Nullable GS_200_MIN { get; set; } - public Nullable GS_200_MAX { get; set; } + public Nullable GS_100 { get; set; } + public Nullable GS_200 { get; set; } public virtual RML_EXTENSION_TEST_RESULTS RML_EXTENSION_TEST_RESULTS { get; set; } } diff --git a/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.Context.cs b/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.Context.cs index 702ce780c..269c2c5de 100644 --- a/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.Context.cs +++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.Context.cs @@ -60,6 +60,7 @@ namespace Tango.DAL.Remote.DB public virtual DbSet COLOR_CATALOGS_GROUPS { get; set; } public virtual DbSet COLOR_CATALOGS_ITEMS { get; set; } public virtual DbSet COLOR_CATALOGS_ITEMS_RECIPES { get; set; } + public virtual DbSet COLOR_PROCESS_INK_UPTAKE { get; set; } public virtual DbSet COLOR_SPACES { get; set; } public virtual DbSet CONFIGURATIONS { get; set; } public virtual DbSet CONTACTS { get; set; } diff --git a/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx b/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx index 78b7b3fdf..5b585e73b 100644 --- a/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx +++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx @@ -273,6 +273,17 @@ + + + + + + + + + + + @@ -950,6 +961,7 @@ + @@ -1256,11 +1268,9 @@ - - + - - + @@ -1818,6 +1828,20 @@ + + + + + + + + + + + + + + @@ -3083,6 +3107,7 @@ + @@ -3228,6 +3253,10 @@ + + + + @@ -3717,6 +3746,7 @@ + @@ -3881,6 +3911,10 @@ + + + + @@ -4220,6 +4254,7 @@ + @@ -4325,12 +4360,10 @@ - - - - + + @@ -4930,6 +4963,18 @@ + + + + + + + + + + + + @@ -5684,6 +5729,7 @@ + @@ -6511,6 +6557,20 @@ + + + + + + + + + + + + + + @@ -7586,11 +7646,9 @@ - - + + - - @@ -7983,6 +8041,18 @@ + + + + + + + + + + + + @@ -8682,6 +8752,7 @@ + diff --git a/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx.diagram b/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx.diagram index 10bd85a35..ad16c680e 100644 --- a/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx.diagram +++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx.diagram @@ -5,94 +5,95 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Software/Visual_Studio/Tango.DAL.Remote/Tango.DAL.Remote.csproj b/Software/Visual_Studio/Tango.DAL.Remote/Tango.DAL.Remote.csproj index 424b9585f..5bc34f83a 100644 --- a/Software/Visual_Studio/Tango.DAL.Remote/Tango.DAL.Remote.csproj +++ b/Software/Visual_Studio/Tango.DAL.Remote/Tango.DAL.Remote.csproj @@ -120,6 +120,9 @@ RemoteADO.tt + + RemoteADO.tt + RemoteADO.tt @@ -452,7 +455,7 @@ - + \ No newline at end of file -- cgit v1.3.1 From b88f12398df6b1d3126369a4016eceecdfa4dbc8 Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Thu, 18 Nov 2021 11:27:19 +0200 Subject: 5818 RML EXTANSION- EXPORT EXCEL FILE --- .../Models/ThreadCharacteristicsExelModel.cs | 46 ++++++++ .../Tango.MachineStudio.ThreadExtensions.csproj | 2 + .../Templates/ExportRMLTemplate.xlsx | Bin 0 -> 21466 bytes .../ViewModels/MainViewVM.cs | 120 +++++++++++++++++++++ .../Views/ThreadCharacteristicsView.xaml | 18 ++-- 5 files changed, 180 insertions(+), 6 deletions(-) create mode 100644 Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ThreadCharacteristicsExelModel.cs create mode 100644 Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Templates/ExportRMLTemplate.xlsx (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views') diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ThreadCharacteristicsExelModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ThreadCharacteristicsExelModel.cs new file mode 100644 index 000000000..dc205b7f5 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ThreadCharacteristicsExelModel.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.MachineStudio.ThreadExtensions.Models +{ + public class ThreadCharacteristicsExelModel + { + public String ThreadName { get; set; } + public String Manufacturer { get; set; } + public String Brand { get; set; } + public String Country { get; set; } + public String EndUse { get; set; } + public String Applications { get; set; } + public String IndustrySector { get; set; } + public String Material { get; set; } + public String Type { get; set; } + public String SubFamily { get; set; } + public String Family { get; set; } + public String Group { get; set; } + public String Texturing { get; set; } + public String Geometry { get; set; } + public String Color { get; set; } + public String GlossLevel { get; set; } + public double LinearDensity { get; set; } + public String Unit { get; set; } + public int Plies { get; set; } + public int FilamentCountPerPlie { get; set; } + public int LinearDensityCount { get; set; } + public int CountDen { get; set; } + public String FiberCount  { get; set; } + public int Twist { get; set; } + public String TwistDirection { get; set; } + + //public Color R_Color { get; set; } + //public String R_Name { get; set; } + //public String R_Media { get; set; } + //public double R_Cyan { get; set; } + //public double R_Magenta { get; set; } + //public double R_Yellow { get; set; } + //public double R_Black { get; set; } + //public int R_Region { get; set; } + } +} diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Tango.MachineStudio.ThreadExtensions.csproj b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Tango.MachineStudio.ThreadExtensions.csproj index fdcef6361..dde2df976 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Tango.MachineStudio.ThreadExtensions.csproj +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Tango.MachineStudio.ThreadExtensions.csproj @@ -100,6 +100,7 @@ + @@ -199,6 +200,7 @@ SettingsSingleFileGenerator Settings.Designer.cs + diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Templates/ExportRMLTemplate.xlsx b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Templates/ExportRMLTemplate.xlsx new file mode 100644 index 000000000..7cd21386f Binary files /dev/null and b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Templates/ExportRMLTemplate.xlsx differ diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/MainViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/MainViewVM.cs index 12ae1aa89..954500b60 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/MainViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/MainViewVM.cs @@ -28,6 +28,8 @@ using Tango.MachineStudio.ThreadExtensions.Views; using Tango.MachineStudio.ThreadExtensions.Models; using Tango.Settings; using System.Reflection; +using Tango.Core.Helpers; +using Tango.Documents; namespace Tango.MachineStudio.ThreadExtensions.ViewModels { @@ -312,6 +314,7 @@ namespace Tango.MachineStudio.ThreadExtensions.ViewModels #region commands public RelayCommand SaveCommand { get; set; } + public RelayCommand ExportToFileCommand { get; set; } public RelayCommand ManageRmlExtensionCommand { get; set; } @@ -790,6 +793,7 @@ namespace Tango.MachineStudio.ThreadExtensions.ViewModels BackToThreadExtensionViewsCommand = new RelayCommand(BackToThreadExtensionViews, () => IsFree); SaveCommand = new RelayCommand(Save, () => IsFree); + ExportToFileCommand = new RelayCommand(ExportRMLToExcel, () => IsFree); ManageRmlExtensionCommand = new RelayCommand(() => LoadActiveRMLExtension(SelectedRMLExtension.Guid), () => SelectedRMLExtension != null); @@ -1201,5 +1205,121 @@ namespace Tango.MachineStudio.ThreadExtensions.ViewModels } #endregion + + #region Export / Import Excel + + public void ExportRMLToExcel() + { + SaveFileDialog dlg = new SaveFileDialog(); + dlg.Filter = "Excel Documents|*.xlsx"; + if (dlg.ShowDialog().Value) + { + using (_notification.PushTaskItem("Exporting RML to file...")) + { + Task.Factory.StartNew(() => + { + try + { + IsFree = false; + + Stream stream = null; + bool dispose = false; + String file = AssemblyHelper.GetCurrentAssemblyFolder() + "\\Templates\\ExportRMLTemplate.xlsx"; + + if (File.Exists(file)) + { + stream = File.OpenRead(file); + dispose = true; + } + else + { + stream = EmbeddedResourceHelper.GetEmbeddedResourceStream("Tango.MachineStudio.ThreadExtensions.Templates.ExportRMLTemplate.xlsx"); + } + + byte[] data = new byte[stream.Length]; + stream.Read(data, 0, data.Length); + File.WriteAllBytes(dlg.FileName, data); + + if (dispose) + { + stream.Dispose(); + } + + ExcelWriter writer = new ExcelWriter(dlg.FileName); + //ActiveRMLExtension = await new RmlExtensionsBuilder(_active_context) + // .Set(guid) + // .WithUser() + // .BuildAsync(); + + //ActiveRML = new RmlBuilder(_active_context) + // .Set(SelectedRMLExtension.RMLGuid) + // .Build(); + + List threadCharacteristicsExelModels = new List(); + ThreadCharacteristicsExelModel model = new ThreadCharacteristicsExelModel(); + model.ThreadName = ActiveRML.Name; + model.Manufacturer = ActiveRML.Manufacturer == null? "": ActiveRML.Manufacturer; + model.Brand = ActiveRMLExtension.YarnBrand == null ? "": ActiveRMLExtension.YarnBrand.Name; + model.Country = ActiveRMLExtension.Country == null? "" : ActiveRMLExtension.Country; + model.EndUse = ActiveRML.MediaPurpose == null ? "" : ActiveRML.MediaPurpose.Name; + model.Applications = ActiveRMLExtension.YarnApplication == null ? "" : ActiveRMLExtension.YarnApplication.Name; + model.IndustrySector = ActiveRMLExtension.YarnIndustrysector == null ? "" : ActiveRMLExtension.YarnIndustrysector.Name; + model.Material = ActiveRML.MediaMaterial == null ? "" : ActiveRML.MediaMaterial.Name; + model.Type = ActiveRMLExtension.YarnType == null ? "" : ActiveRMLExtension.YarnType.Name; + model.SubFamily = ActiveRMLExtension.YarnSubFamily == null ? "" : ActiveRMLExtension.YarnSubFamily.Name; + model.Family = ActiveRMLExtension.YarnFamily == null ? "" : ActiveRMLExtension.YarnFamily.Name; + model.Group = ActiveRMLExtension.YarnGroup == null ? "" : ActiveRMLExtension.YarnGroup.Name; + model.Texturing = ActiveRMLExtension.YarnTexturing == null ? "" : ActiveRMLExtension.YarnTexturing.Name; + model.Geometry = ActiveRML.FiberShape == null ? "" : ActiveRML.FiberShape.Name; + model.Color = ActiveRMLExtension.YarnWhiteShade == null ? "" : ActiveRMLExtension.YarnWhiteShade.Name; + model.GlossLevel = ActiveRMLExtension.YarnGlossLevel == null ? "" : ActiveRMLExtension.YarnGlossLevel.Name; + model.LinearDensity = ActiveRML.FiberSize; + model.Unit = ActiveRML.LinearMassDensityUnit == null ? "" : ActiveRML.LinearMassDensityUnit.Name; + model.Plies = (int) ActiveRML.RMLPlies; + model.FilamentCountPerPlie = ActiveRML.PliesPerFiber; + model.LinearDensityCount = ActiveRML.DencityCount; + model.CountDen = ActiveRML.DencityCount; + model.FiberCount = ActiveRML.FiberCount; + model.Twist = ActiveRMLExtension.TwistTpm; + model.TwistDirection = ActiveRMLExtension.YarnTwistDirections.ToDescription(); + threadCharacteristicsExelModels.Add(model); + writer.WriteData(threadCharacteristicsExelModels, "Thread characteristics"); + //List groups = ActiveCatalog.ColorCatalogsGroups.Select(x => new ColorGroup() + //{ + // GroupColor = x.Color, + // GroupName = x.Name, + // GroupIndex = x.GroupIndex, + //}).ToList(); + + //writer.WriteData(groups, "Groups"); + + //ActiveRMLExtension. + + writer.Dispose(); + + InvokeUI(() => + { + _notification.ShowInfo("RML extensions exported successfully."); + }); + } + catch (Exception ex) + { + LogManager.Log(ex, $"Error exporting RML extensions to {dlg.FileName}"); + + InvokeUI(() => + { + _notification.ShowError($"An error occurred while trying to export the RML extensions. Make sure the selected excel file is closed and data is valid.\n{ex.FlattenMessage()}"); + }); + } + finally + { + IsFree = true; + } + }); + } + } + } + + #endregion } } diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/ThreadCharacteristicsView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/ThreadCharacteristicsView.xaml index aeedcb6df..05ad00b72 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/ThreadCharacteristicsView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/ThreadCharacteristicsView.xaml @@ -225,12 +225,18 @@ - + + + + + + + -- cgit v1.3.1 From 62d65c64a9a1e44aca6421ddc7a385a6d4b7361e Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Thu, 25 Nov 2021 10:17:16 +0200 Subject: #5818 -Export to Excel file --- Software/DB/PPC/Tango.mdf | Bin 75497472 -> 75497472 bytes Software/DB/PPC/Tango_log.ldf | Bin 53673984 -> 53673984 bytes Software/DB/Tango.mdf | Bin 75497472 -> 75497472 bytes Software/DB/Tango_log.ldf | Bin 22675456 -> 22675456 bytes .../Models/ColorParametrsExcelModel.cs | 59 ++++++++ .../Models/TestResultsExcelModel.cs | 123 +++++++++++++++++ .../Models/ThreadCharacteristicsExelModel.cs | 11 +- .../Tango.MachineStudio.ThreadExtensions.csproj | 2 + .../Templates/ExportRMLTemplate.xlsx | Bin 21466 -> 31132 bytes .../ViewModels/ColorParametersVewVM.cs | 98 +++++++++++++ .../ViewModels/MainViewVM.cs | 37 +++-- .../ViewModels/TestResultViewVM.cs | 132 +----------------- .../ViewModels/TestResultsViewVM.cs | 151 +++++++++++++++++++++ .../Views/TestResultsView.xaml | 32 ++--- 14 files changed, 479 insertions(+), 166 deletions(-) create mode 100644 Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ColorParametrsExcelModel.cs create mode 100644 Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/TestResultsExcelModel.cs (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views') diff --git a/Software/DB/PPC/Tango.mdf b/Software/DB/PPC/Tango.mdf index b51f29e48..b9d976281 100644 Binary files a/Software/DB/PPC/Tango.mdf and b/Software/DB/PPC/Tango.mdf differ diff --git a/Software/DB/PPC/Tango_log.ldf b/Software/DB/PPC/Tango_log.ldf index 708f76de7..48c8b317b 100644 Binary files a/Software/DB/PPC/Tango_log.ldf and b/Software/DB/PPC/Tango_log.ldf differ diff --git a/Software/DB/Tango.mdf b/Software/DB/Tango.mdf index 0666670d6..9973b1888 100644 Binary files a/Software/DB/Tango.mdf and b/Software/DB/Tango.mdf differ diff --git a/Software/DB/Tango_log.ldf b/Software/DB/Tango_log.ldf index a9a17bfb1..700f5da9f 100644 Binary files a/Software/DB/Tango_log.ldf and b/Software/DB/Tango_log.ldf differ diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ColorParametrsExcelModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ColorParametrsExcelModel.cs new file mode 100644 index 000000000..b762c1042 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ColorParametrsExcelModel.cs @@ -0,0 +1,59 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.MachineStudio.ThreadExtensions.Models +{ + public class ColorParametrsExcelModel + { + public String Thread_name { get; set; } + public String MachineNumber { get; set; } + public double White_point_L { get; set; } + public double White_point_a { get; set; } + public double White_point_B { get; set; } + public double Factor_100__C { get; set; } + public double Factor_100__Cyan_L { get; set; } + public double Factor_100__Cyan_A { get; set; } + public double Factor_100__Cyan_B { get; set; } + public double Factor_100__M { get; set; } + public double Factor_100__Magenta_L { get; set; } + public double Factor_100__Magenta_A { get; set; } + public double Factor_100__Magenta_B { get; set; } + + public double Factor_100__Y { get; set; } + public double Factor_100__Yellow_L { get; set; } + public double Factor_100__Yellow_A { get; set; } + public double Factor_100__Yellow_B { get; set; } + public double Factor_100_K { get; set; } + public double Factor_100__Key_L { get; set; } + public double Factor_100__Key_A { get; set; } + public double Factor_100__Key_B { get; set; } + public double Factor_200_C { get; set; } + public double Factor_200__Cyan_L { get; set; } + public double Factor_200__Cyan_A { get; set; } + public double Factor_200__Cyan_B { get; set; } + + public double Factor_200__Magenta { get; set; } + public double Factor_200__Magenta_L { get; set; } + public double Factor_200__Magenta_A { get; set; } + public double Factor_200__Magenta_B { get; set; } + + public double Factor_200__Yellow { get; set; } + public double Factor_200__Yellow_L { get; set; } + public double Factor_200__Yellow_A { get; set; } + public double Factor_200__Yellow_B { get; set; } + + public double Factor_200__Key { get; set; } + public double Factor_200__Key_L { get; set; } + public double Factor_200__Key_A { get; set; } + public double Factor_200__Key_B { get; set; } + + public int Min_Ink_Uptake_Zone1 { get; set; } + public int Min_Ink_Uptake_Zone2 { get; set; } + public int Max_Ink_Uptake_Zone1 { get; set; } + public int Max_ink_uptake__Zone2 { get; set; } + + } +} diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/TestResultsExcelModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/TestResultsExcelModel.cs new file mode 100644 index 000000000..fbd142362 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/TestResultsExcelModel.cs @@ -0,0 +1,123 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.MachineStudio.ThreadExtensions.Models +{ + public class TestResultsExcelModel + { + public String Thread_name_test_results { get; set; } + public String Machine_number { get; set; } + public String Test_results_name__tab { get; set; } + + public int Dryer_temp { get; set; } + public int Dryer_flow { get; set; } + public int Tunnel_temp { get; set; } + public int Tunnel_flow { get; set; } + + public String Tension_in_head { get; set; } + public String Tension_after_dryer { get; set; } + public String Tension_in_winder { get; set; } + public String BTSR { get; set; } + public String Puller_tension { get; set; } + public String Winder_tension { get; set; } + + public double Rubbing_K_100___DE { get; set; } + public double Rubbing_K_100___GS { get; set; } + public double Rubbing_K_200___DE { get; set; } + public double Rubbing_K_200___GS { get; set; } + public double Rubbing_C_100___DE { get; set; } + public double Rubbing_C_100___GS { get; set; } + public double Rubbing_C_200___DE { get; set; } + public double Rubbing_C_200___GS { get; set; } + public double Rubbing_Y_100___DE { get; set; } + public double Rubbing_Y_100___GS { get; set; } + public double Rubbing_Y_200___DE { get; set; } + public double Rubbing_Y_200___GS { get; set; } + public double Rubbing_M_100___DE { get; set; } + public double Rubbing_M_100___GS { get; set; } + public double Rubbing_M_200___DE { get; set; } + public double Rubbing_M_200___GS { get; set; } + + public String Color_REF { get; set; } + public double Load__N_REF { get; set; } + public double STDEV_REF { get; set; } + public double REF_Strain { get; set; } + public double STDEV_Strain_REF { get; set; } + + public String Color_100_C { get; set; } + public int C_color_100_C { get; set; } + public double Load_N_100_C { get; set; } + public double STDEV_100_C { get; set; } + public double Change_100_C { get; set; } + public double Strain_100_C { get; set; } + public double STDEV_100_C_2 { get; set; } + public double Change_100_C_2 { get; set; } + + public String Color_100_K { get; set; } + public int C_color_100_K { get; set; } + public double Load__N_100_K { get; set; } + public double STDEV_100_K { get; set; } + public double Change__100_K { get; set; } + public double Strain_100_K { get; set; } + public double STDEV_100_K_2 { get; set; } + public double Change_100_K_2 { get; set; } + + public String Color_200_C { get; set; } + public int C_color_200_C { get; set; } + public double Load__N_200_C { get; set; } + public double STDEV_200_C { get; set; } + public double Change_200_C { get; set; } + public double Strain_200_C { get; set; } + public double STDEV_200_C_2 { get; set; } + public double Change_200_C_2 { get; set; } + + public String Color_200_K { get; set; } + public int C_color_200_K { get; set; } + public double Load__N_200_K { get; set; } + public double STDEV_200_K { get; set; } + public double Change_200_K { get; set; } + public double Strain_200_K { get; set; } + public double STDEV_200_K_2 { get; set; } + public double Change_200_K_2 { get; set; } + + public String Uniformity_Zone_1 { get; set; } + public String Uniformity_Zone_2 { get; set; } + + public double COF_REF { get; set; } + public double CV_REF { get; set; } + public double COF_Black { get; set; } + public double CV_Black { get; set; } + //for twine inly + public double lub_amount { get; set; } + + public String Comments { get; set; } + public String Conclusion { get; set; } + + public TestResultsExcelModel() + { + Comments = Conclusion = ""; + Color_100_C = "Cyan"; + C_color_100_C = 100; + Load__N_100_K = STDEV_100_K = Change__100_K = Strain_100_K = STDEV_100_K_2 = Change_100_K_2 = 0.0; + + Color_200_C = "Cyan"; + C_color_200_C = 200; + Load__N_200_C = STDEV_200_C = Change_200_C = Strain_200_C = STDEV_200_C_2 = Change_200_C_2 = 0.0; + + Color_100_K = "Black"; + C_color_100_K = 100; + Load__N_100_K = STDEV_100_K = Change__100_K = Strain_100_K = STDEV_100_K_2 = Change_100_K_2 = 0.0; + + Color_200_K = "Black"; + C_color_200_K = 200; + Load__N_200_K = STDEV_200_K = Change_200_K = Strain_200_K = STDEV_200_K_2 = Change_200_K_2 = 0.0; + + Color_REF = "REF"; + Load__N_REF = STDEV_REF = REF_Strain = STDEV_Strain_REF = 0; + } + + } +} diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ThreadCharacteristicsExelModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ThreadCharacteristicsExelModel.cs index dc205b7f5..1f894d70b 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ThreadCharacteristicsExelModel.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/ThreadCharacteristicsExelModel.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Tango.MachineStudio.ThreadExtensions.Models { - public class ThreadCharacteristicsExelModel + public class ThreadCharacteristicsExcelModel { public String ThreadName { get; set; } public String Manufacturer { get; set; } @@ -33,14 +33,5 @@ namespace Tango.MachineStudio.ThreadExtensions.Models public String FiberCount  { get; set; } public int Twist { get; set; } public String TwistDirection { get; set; } - - //public Color R_Color { get; set; } - //public String R_Name { get; set; } - //public String R_Media { get; set; } - //public double R_Cyan { get; set; } - //public double R_Magenta { get; set; } - //public double R_Yellow { get; set; } - //public double R_Black { get; set; } - //public int R_Region { get; set; } } } diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Tango.MachineStudio.ThreadExtensions.csproj b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Tango.MachineStudio.ThreadExtensions.csproj index dde2df976..5199245a3 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Tango.MachineStudio.ThreadExtensions.csproj +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Tango.MachineStudio.ThreadExtensions.csproj @@ -96,10 +96,12 @@ + + diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Templates/ExportRMLTemplate.xlsx b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Templates/ExportRMLTemplate.xlsx index 7cd21386f..e9bdd6151 100644 Binary files a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Templates/ExportRMLTemplate.xlsx and b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Templates/ExportRMLTemplate.xlsx differ diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/ColorParametersVewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/ColorParametersVewVM.cs index c60c65216..e13e016c5 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/ColorParametersVewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/ColorParametersVewVM.cs @@ -782,6 +782,104 @@ namespace Tango.MachineStudio.ThreadExtensions.ViewModels } #endregion + + #region export to excel + + public void WritetoExcel(ColorParametrsExcelModel colorParametrsExcelModel, string machineGuid) + { + if (_active_context == null) + { + _active_context = ObservablesContext.CreateDefault(); + } + var colorProcessParametercur = _active_context.ColorProcessParameters.Where(x => x.RmlsExtensionsGuid == RMLExtemtionGUID && x.MachineGuid == machineGuid).FirstOrDefault(); + if (colorProcessParametercur == null) + return; + var colorProcessParameter = new ColorProcessParametersBuilder(_active_context).Set(colorProcessParametercur.Guid).WithColorProcessData().WithColorProcessFactor().WithColorProcessInkUptake().Build(); + var factor_cyan100 = colorProcessParameter.ColorProcessFactors.Where(x => x.FactorColor == FactorColors.CYAN && x.FactorPercent == 100).FirstOrDefault(); + if (factor_cyan100 != null) + { + colorParametrsExcelModel.Factor_100__C = factor_cyan100.InkNlCm; + colorParametrsExcelModel.Factor_100__Cyan_L = factor_cyan100.L; + colorParametrsExcelModel.Factor_100__Cyan_A = factor_cyan100.A; + colorParametrsExcelModel.Factor_100__Cyan_B = factor_cyan100.B; + } + + var factor_magenta100 = colorProcessParameter.ColorProcessFactors.Where(x => x.FactorColor == FactorColors.MAGENTA && x.FactorPercent == 100).FirstOrDefault(); + if (factor_magenta100 != null) + { + colorParametrsExcelModel.Factor_100__M = factor_magenta100.InkNlCm; + colorParametrsExcelModel.Factor_100__Magenta_L = factor_magenta100.L; + colorParametrsExcelModel.Factor_100__Magenta_A = factor_magenta100.A; + colorParametrsExcelModel.Factor_100__Magenta_B = factor_magenta100.B; + } + + var factor_yellow100 = colorProcessParameter.ColorProcessFactors.Where(x => x.FactorColor == FactorColors.YELLOW && x.FactorPercent == 100).FirstOrDefault(); + if (factor_yellow100 != null) + { + colorParametrsExcelModel.Factor_100__Y = factor_yellow100.InkNlCm; + colorParametrsExcelModel.Factor_100__Yellow_L = factor_yellow100.L; + colorParametrsExcelModel.Factor_100__Yellow_A = factor_yellow100.A; + colorParametrsExcelModel.Factor_100__Yellow_B = factor_yellow100.B; + } + + var factor_key100 = colorProcessParameter.ColorProcessFactors.Where(x => x.FactorColor == FactorColors.BLACK && x.FactorPercent == 100).FirstOrDefault(); + if (factor_key100 != null) + { + colorParametrsExcelModel.Factor_100_K = factor_key100.InkNlCm; + colorParametrsExcelModel.Factor_100__Key_L = factor_key100.L; + colorParametrsExcelModel.Factor_100__Key_A = factor_key100.A; + colorParametrsExcelModel.Factor_100__Key_B = factor_key100.B; + } + + var factor_cyan200 = colorProcessParameter.ColorProcessFactors.Where(x => x.FactorColor == FactorColors.CYAN && x.FactorPercent == 200).FirstOrDefault(); + if (factor_cyan200 != null) + { + colorParametrsExcelModel.Factor_200_C = factor_cyan200.InkNlCm; + colorParametrsExcelModel.Factor_200__Cyan_L = factor_cyan200.L; + colorParametrsExcelModel.Factor_200__Cyan_A = factor_cyan200.A; + colorParametrsExcelModel.Factor_200__Cyan_B = factor_cyan200.B; + } + + var factor_magenta200 = colorProcessParameter.ColorProcessFactors.Where(x => x.FactorColor == FactorColors.MAGENTA && x.FactorPercent == 200).FirstOrDefault(); + if (factor_magenta200 != null) + { + colorParametrsExcelModel.Factor_200__Magenta = factor_magenta200.InkNlCm; + colorParametrsExcelModel.Factor_200__Magenta_L = factor_magenta200.L; + colorParametrsExcelModel.Factor_200__Magenta_A = factor_magenta200.A; + colorParametrsExcelModel.Factor_200__Magenta_B = factor_magenta200.B; + } + + var factor_yellow200 = colorProcessParameter.ColorProcessFactors.Where(x => x.FactorColor == FactorColors.YELLOW && x.FactorPercent == 200).FirstOrDefault(); + if (factor_yellow200 != null) + { + colorParametrsExcelModel.Factor_200__Yellow = factor_yellow200.InkNlCm; + colorParametrsExcelModel.Factor_200__Yellow_L = factor_yellow200.L; + colorParametrsExcelModel.Factor_200__Yellow_A = factor_yellow200.A; + colorParametrsExcelModel.Factor_200__Yellow_B = factor_yellow200.B; + } + + var factor_key200 = colorProcessParameter.ColorProcessFactors.Where(x => x.FactorColor == FactorColors.BLACK && x.FactorPercent == 200).FirstOrDefault(); + if (factor_key200 != null) + { + colorParametrsExcelModel.Factor_200__Key = factor_key200.InkNlCm; + colorParametrsExcelModel.Factor_200__Key_L = factor_key200.L; + colorParametrsExcelModel.Factor_200__Key_A = factor_key200.A; + colorParametrsExcelModel.Factor_200__Key_B = factor_key200.B; + } + + foreach (var inkUptakeZone in colorProcessParameter.ColorProcessInkUptake) + { + if (inkUptakeZone.InkUptakeZoneType == InkUptakeZoneTypes.MININKUPTAKEZONE1) + colorParametrsExcelModel.Min_Ink_Uptake_Zone1 = (inkUptakeZone.InkValue == null) ? 0 : (int)inkUptakeZone.InkValue; + else if (inkUptakeZone.InkUptakeZoneType == InkUptakeZoneTypes.MININKUPTAKEZONE2) + colorParametrsExcelModel.Min_Ink_Uptake_Zone2 = (inkUptakeZone.InkValue == null) ? 0 : (int)inkUptakeZone.InkValue; + else if (inkUptakeZone.InkUptakeZoneType == InkUptakeZoneTypes.MAXINKUPTAKEZONE1) + colorParametrsExcelModel.Max_Ink_Uptake_Zone1 = (inkUptakeZone.InkValue == null) ? 0 : (int)inkUptakeZone.InkValue; + else if (inkUptakeZone.InkUptakeZoneType == InkUptakeZoneTypes.MAXINKUPTAKEZONE2) + colorParametrsExcelModel.Max_ink_uptake__Zone2 = (inkUptakeZone.InkValue == null) ? 0 : (int)inkUptakeZone.InkValue; + } + } + #endregion } } diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/MainViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/MainViewVM.cs index 954500b60..6b95cf190 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/MainViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/MainViewVM.cs @@ -1255,8 +1255,8 @@ namespace Tango.MachineStudio.ThreadExtensions.ViewModels // .Set(SelectedRMLExtension.RMLGuid) // .Build(); - List threadCharacteristicsExelModels = new List(); - ThreadCharacteristicsExelModel model = new ThreadCharacteristicsExelModel(); + List threadCharacteristicsExelModels = new List(); + ThreadCharacteristicsExcelModel model = new ThreadCharacteristicsExcelModel(); model.ThreadName = ActiveRML.Name; model.Manufacturer = ActiveRML.Manufacturer == null? "": ActiveRML.Manufacturer; model.Brand = ActiveRMLExtension.YarnBrand == null ? "": ActiveRMLExtension.YarnBrand.Name; @@ -1283,18 +1283,33 @@ namespace Tango.MachineStudio.ThreadExtensions.ViewModels model.Twist = ActiveRMLExtension.TwistTpm; model.TwistDirection = ActiveRMLExtension.YarnTwistDirections.ToDescription(); threadCharacteristicsExelModels.Add(model); - writer.WriteData(threadCharacteristicsExelModels, "Thread characteristics"); - //List groups = ActiveCatalog.ColorCatalogsGroups.Select(x => new ColorGroup() - //{ - // GroupColor = x.Color, - // GroupName = x.Name, - // GroupIndex = x.GroupIndex, - //}).ToList(); + writer.WriteData(threadCharacteristicsExelModels, "Thread characteristics", 2); - //writer.WriteData(groups, "Groups"); + List colorParametrsExcelList = new List(); - //ActiveRMLExtension. + List testResultsExcelModelList = new List(); + foreach(var machine in Machines) + { + if (machine.HasRMLTest) + { + ColorParametrsExcelModel colorParametrsExcelModel = new ColorParametrsExcelModel(); + colorParametrsExcelModel.Thread_name = ActiveRML.Name; + colorParametrsExcelModel.MachineNumber = machine.SerialNumber; + colorParametrsExcelModel.White_point_L = ActiveRML.WhitePointL; + colorParametrsExcelModel.White_point_a = ActiveRML.WhitePointA; + colorParametrsExcelModel.White_point_B = ActiveRML.WhitePointB; + ColorParametersVewVM.WritetoExcel(colorParametrsExcelModel, machine.Guid); + + colorParametrsExcelList.Add(colorParametrsExcelModel); + + TestResultsViewVM.LoadTestResultsExcel(testResultsExcelModelList, machine.Guid, machine.SerialNumber); + } + + } + writer.WriteData(colorParametrsExcelList, "Color parameters",2); + writer.WriteData(testResultsExcelModelList, "Machine tests results", 2); + writer.Dispose(); InvokeUI(() => diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/TestResultViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/TestResultViewVM.cs index 52182cdd7..41be789ed 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/TestResultViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/TestResultViewVM.cs @@ -12,6 +12,7 @@ using Tango.BL.Entities; using Tango.BL.Enumerations; using Tango.Core.Commands; using Tango.MachineStudio.Common.Notifications; +using Tango.MachineStudio.ThreadExtensions.Models; using Tango.SharedUI; namespace Tango.MachineStudio.ThreadExtensions.ViewModels @@ -63,139 +64,14 @@ namespace Tango.MachineStudio.ThreadExtensions.ViewModels #endregion - public RelayCommand ExportToFileCommand { get; set; } + public TestResultViewVM(INotificationProvider notification, IActionLogManager actionLogManager) { _notification = notification; _actionLogManager = actionLogManager; - ExportToFileCommand = new RelayCommand(ExportToFile); - } - - #region save - // public void Save(ObservablesContext active_context) - //{ - // try - // { - // IsFree = false; - - // TestResult.LastUpdated = DateTime.UtcNow; - - // var RmlExtensionTestResultAfterChange = RmlExtensionTestResultDTO.FromObservable(TestResult); - - // active_context.SaveChanges(); - // } - // catch (Exception ex) - // { - // LogManager.Log(ex, "Could not update RmlExtension TestResult."); - // _notification.ShowError($"An error occurred while trying to save RmlExtension TestResult.\n{ex.Message}"); - // } - // finally - // { - // IsFree = true; - // } - //} - #endregion - - private void ExportToFile() - { - SaveFileDialog dlg = new SaveFileDialog(); - try - { - dlg.Title = $"Export excel calibration file for {TestResult.Name}"; - dlg.Filter = "Text Files|*.txt"; - dlg.DefaultExt = ".txt"; - dlg.FileName = $"RML_EXTENSION_{TestResult.Name}.txt"; - if (dlg.ShowDialog().Value) - { - using (StreamWriter outputFile = new StreamWriter(dlg.FileName)) - { - outputFile.WriteLine(String.Format($" {TestResult.Name.ToUpper()} ")); - outputFile.WriteLine(""); - outputFile.WriteLine(""); - outputFile.WriteLine(" Dryer temperature"); - outputFile.WriteLine(""); - outputFile.WriteLine(String.Format($" Dryer temperature : {TestResult.DryerTemperature.ToString()}")); - outputFile.WriteLine(String.Format($" Tunnel temperature : {TestResult.TunnelTemperature.ToString()}")); - outputFile.WriteLine(String.Format($" Tunnel flow : {TestResult.TunnelFlow.ToString()}")); - outputFile.WriteLine(String.Format($" Tunnel AVG temperature : {TestResult.TunnelAvgTemperature.ToString()}")); - outputFile.WriteLine(""); - outputFile.WriteLine(""); - outputFile.WriteLine(" Tension through the thread path"); - outputFile.WriteLine(""); - outputFile.WriteLine(String.Format($" Head : {TestResult.TensionHeadMin.ToString()} - {TestResult.TensionHeadMax.ToString()}")); - outputFile.WriteLine(String.Format($" After dryer : {TestResult.TensionAfterDryerMin.ToString()} - {TestResult.TensioinAfterDryerMax.ToString()}")); - outputFile.WriteLine(String.Format($" Winder : {TestResult.BtsrMin.ToString()} - {TestResult.BtsrMax.ToString()}")); - outputFile.WriteLine(String.Format($" BTSR : {TestResult.TensionHeadMin.ToString()} - {TestResult.TensionHeadMax.ToString()}")); - outputFile.WriteLine(String.Format($" Puller tension : {TestResult.PullerTensionMin.ToString()} - {TestResult.PullerTensionMax.ToString()}")); - outputFile.WriteLine(String.Format($" Winder exit tension: {TestResult.ExitTensionMin.ToString()} - {TestResult.ExitTensionMax.ToString()}")); - - outputFile.WriteLine(""); - outputFile.WriteLine(" Rubbing results"); - outputFile.WriteLine(""); - outputFile.WriteLine(" Color DeltaE CIE 100 % GS 100% DeltaETestResult CIE 200 % GS 200% "); - foreach (var rubbingResult in TestResult.RubbingResults) - { - StringBuilder sb = new StringBuilder(); - //sb.Append(" Color: "); - sb.Append($" { rubbingResult.TestResultColor.ToString()} "); - //sb.Append(" DeltaE CIE 100 % : "); - sb.Append($" { rubbingResult.DeltaeCie100.ToString()} "); - //sb.Append(" GS 100% : "); - sb.Append($" { rubbingResult.Gs100.ToString()} "); - //sb.Append(" DeltaE CIE 200 % : "); - sb.Append($" { rubbingResult.DeltaeCie200.ToString()} "); - //sb.Append(" GS 200% : "); - sb.Append($" { rubbingResult.Gs200.ToString()} "); - outputFile.WriteLine(sb); - } - outputFile.WriteLine(""); - outputFile.WriteLine(" Mechanical properties"); - outputFile.WriteLine(""); - outputFile.WriteLine(" %Color Color Load at Maximum Load(N) STDEV Percentage Strain at Maximum Load STDEV "); - foreach (var result in TestResult.TensileResults) - { - StringBuilder sb = new StringBuilder(); - //sb.Append(" % Color: "); - sb.Append($" { result.ColorPercent.ToString()}"); - //sb.Append(" Color : "); - sb.Append($" { result.TestResultColor.ToString()}"); - //sb.Append(" Load at Maximum Load(N) : "); - sb.Append($" { result.MaxLoad.ToString()}"); - //sb.Append(" STDEV : "); - sb.Append($" { result.StdevMaxLoad.ToString()}"); - //sb.Append(" Percentage Strain at Maximum Load: "); - sb.Append($" {result.StrainMaxLoad.ToString()}"); - //sb.Append(" STDEV : "); - sb.Append($" { result.StdevStrainMaxLoad.ToString()}"); - outputFile.WriteLine(sb); - } - outputFile.WriteLine(""); - outputFile.WriteLine(" Uniformity"); - outputFile.WriteLine(""); - outputFile.WriteLine(String.Format($" Zone1 : {TestResult.SeverityZone1Min.ToString()} - {TestResult.SeverityZone1Max.ToString()}")); - outputFile.WriteLine(String.Format($" Zone2 : {TestResult.SeverityZone2Min.ToString()} - {TestResult.SeverityZone2Max.ToString()}")); - outputFile.WriteLine(""); - outputFile.WriteLine(" COF"); - outputFile.WriteLine(""); - outputFile.WriteLine(" Thread name Lub Version COF Lub amount "); - outputFile.WriteLine(String.Format($" REF {TestResult.RefLubVersion} {TestResult.RefCof.ToString()} {TestResult.RefLub.ToString()}")); - outputFile.WriteLine(String.Format($" {ThreadName} {TestResult.ThreadLubVersion} {TestResult.ThreadCof.ToString()} {TestResult.ThreadLub.ToString()}")); - - outputFile.WriteLine(""); - outputFile.WriteLine(String.Format($" Comments: {TestResult.Comment}")); - outputFile.WriteLine(String.Format($" Conclusion: {TestResult.Conclusions}")); - outputFile.WriteLine(""); - outputFile.Flush(); - } - - } - } - catch (Exception ex) - { - LogManager.Log(ex, "Error exporting excel file " + dlg.FileName); - _notification.ShowError("An error occurred while trying to export the test result data."); - } } + + } } diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/TestResultsViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/TestResultsViewVM.cs index eea7eb9fc..f7823a77c 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/TestResultsViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/ViewModels/TestResultsViewVM.cs @@ -402,5 +402,156 @@ namespace Tango.MachineStudio.ThreadExtensions.ViewModels } #endregion + + public async void LoadTestResultsExcel(List testResultsExcelModelList, string machineGUID, string machineSerialNumber) + { + try + { + IsFree = false; + if (_active_context == null) + { + _active_context = ObservablesContext.CreateDefault(); + } + + using (_notification.PushTaskItem("Loading Test Results Parameters for save in Excel file ...")) + { + SynchronizedObservableCollection testResults = SelectedTestResults; + if (SelectedMachineGUID != machineGUID) + { + var loadedtestResults = await new RMLExtensionTestResultsCollectionBuilder(_active_context).SetAll().ForRMLExtension(RMLExtemtionGUID).ForMachine(machineGUID).WithRubbingAndTensileResults().BuildAsync(); + testResults = loadedtestResults.OrderBy(x => x.ResultIndex).ToSynchronizedObservableCollection(); + + } + foreach (var testresult in testResults) + { + TestResultsExcelModel testResultsExcelModel = new TestResultsExcelModel(); + testResultsExcelModel.Thread_name_test_results = ThreadName; + testResultsExcelModel.Machine_number = machineSerialNumber; + testResultsExcelModel.Test_results_name__tab = testresult.Name; + + testResultsExcelModel.Dryer_temp = testresult.DryerTemperature == null ? 0 : (int)testresult.DryerTemperature; + testResultsExcelModel.Dryer_flow = 0; + testResultsExcelModel.Tunnel_temp = testresult.TunnelTemperature == null ? 0 : (int)testresult.TunnelTemperature; + testResultsExcelModel.Tunnel_flow = testresult.TunnelFlow == null ? 0 : (int)testresult.TunnelFlow; + + testResultsExcelModel.Tension_in_head = testresult.TensionHeadMin == null ? "" : testresult.TensionHeadMin.ToString(); + testResultsExcelModel.Tension_after_dryer = testresult.TensionAfterDryerMin == null ? "" : testresult.TensionAfterDryerMin.ToString(); + testResultsExcelModel.Tension_in_winder = testresult.TensionWinderMin == null ? "" : testresult.TensionWinderMin.ToString(); + testResultsExcelModel.BTSR = testresult.BtsrMin == null ? "" : testresult.BtsrMin.ToString(); + testResultsExcelModel.Puller_tension = testresult.PullerTensionMin == null ? "" : testresult.PullerTensionMin.ToString(); + testResultsExcelModel.Winder_tension = testresult.ExitTensionMin == null ? "" : testresult.ExitTensionMin.ToString(); + + foreach( var tensileResult in testresult.TensileResults) + { + if(tensileResult.TestResultColor == TestResultColors.CYAN) + { + if(tensileResult.ColorPercent == 100) + { + testResultsExcelModel.Load_N_100_C = tensileResult.MaxLoad == null ? 0 : (double)tensileResult.MaxLoad; + testResultsExcelModel.STDEV_100_C = tensileResult.StdevMaxLoad == null ? 0 : (double)tensileResult.StdevMaxLoad; + testResultsExcelModel.Change_100_C = tensileResult.PercentChangeLoad == null ? 0 : (double)tensileResult.PercentChangeLoad; + testResultsExcelModel.Strain_100_C = tensileResult.StrainMaxLoad == null ? 0 : (double)tensileResult.StrainMaxLoad; + testResultsExcelModel.STDEV_100_C_2 = tensileResult.StdevStrainMaxLoad == null ? 0 : (double)tensileResult.StdevStrainMaxLoad; + testResultsExcelModel.Change_100_C_2 = tensileResult.PercentChangeStrain == null ? 0 : (double)tensileResult.PercentChangeStrain; + } + else if(tensileResult.ColorPercent == 200) + { + testResultsExcelModel.Load__N_200_C = tensileResult.MaxLoad == null ? 0 : (double)tensileResult.MaxLoad; + testResultsExcelModel.STDEV_200_C = tensileResult.StdevMaxLoad == null ? 0 : (double)tensileResult.StdevMaxLoad; + testResultsExcelModel.Change_200_C = tensileResult.PercentChangeLoad == null ? 0 : (double)tensileResult.PercentChangeLoad; + testResultsExcelModel.Strain_200_C = tensileResult.StrainMaxLoad == null ? 0 : (double)tensileResult.StrainMaxLoad; + testResultsExcelModel.STDEV_200_C_2 = tensileResult.StdevStrainMaxLoad == null ? 0 : (double)tensileResult.StdevStrainMaxLoad; + testResultsExcelModel.Change_200_C_2 = tensileResult.PercentChangeStrain == null ? 0 : (double)tensileResult.PercentChangeStrain; + } + } + else if(tensileResult.TestResultColor == TestResultColors.BLACK) + { + if (tensileResult.ColorPercent == 100) + { + testResultsExcelModel.Load__N_100_K = tensileResult.MaxLoad == null ? 0 : (double)tensileResult.MaxLoad; + testResultsExcelModel.STDEV_100_K = tensileResult.StdevMaxLoad == null ? 0 : (double)tensileResult.StdevMaxLoad; + testResultsExcelModel.Change__100_K = tensileResult.PercentChangeLoad == null ? 0 : (double)tensileResult.PercentChangeLoad; + testResultsExcelModel.Strain_100_K = tensileResult.StrainMaxLoad == null ? 0 : (double)tensileResult.StrainMaxLoad; + testResultsExcelModel.STDEV_100_K_2 = tensileResult.StdevStrainMaxLoad == null ? 0 : (double)tensileResult.StdevStrainMaxLoad; + testResultsExcelModel.Change_100_K_2 = tensileResult.PercentChangeStrain == null ? 0 : (double)tensileResult.PercentChangeStrain; + } + else if (tensileResult.ColorPercent == 200) + { + testResultsExcelModel.Load__N_200_K = tensileResult.MaxLoad == null ? 0 : (double)tensileResult.MaxLoad; + testResultsExcelModel.STDEV_200_K = tensileResult.StdevMaxLoad == null ? 0 : (double)tensileResult.StdevMaxLoad; + testResultsExcelModel.Change_200_K = tensileResult.PercentChangeLoad == null ? 0 : (double)tensileResult.PercentChangeLoad; + testResultsExcelModel.Strain_200_K = tensileResult.StrainMaxLoad == null ? 0 : (double)tensileResult.StrainMaxLoad; + testResultsExcelModel.STDEV_200_K_2 = tensileResult.StdevStrainMaxLoad == null ? 0 : (double)tensileResult.StdevStrainMaxLoad; + testResultsExcelModel.Change_200_K_2 = tensileResult.PercentChangeStrain == null ? 0 : (double)tensileResult.PercentChangeStrain; + } + + } + else if (tensileResult.IsWhiteColor) + { + testResultsExcelModel.Load__N_REF = tensileResult.MaxLoad == null ? 0 : (double)tensileResult.MaxLoad; + testResultsExcelModel.STDEV_REF = tensileResult.StdevMaxLoad == null ? 0 : (double)tensileResult.StdevMaxLoad; + testResultsExcelModel.REF_Strain = tensileResult.StdevStrainMaxLoad == null ? 0 : (double)tensileResult.StdevStrainMaxLoad; + testResultsExcelModel.STDEV_Strain_REF = tensileResult.PercentChangeStrain == null ? 0 : (double)tensileResult.PercentChangeStrain; + } + + } + + foreach (var rubbingresult in testresult.RubbingResults) + { + if (rubbingresult.TestResultColor == TestResultColors.CYAN) + { + testResultsExcelModel.Rubbing_C_100___DE = rubbingresult.DeltaeCie100 == null ? 0.0 : (double)rubbingresult.DeltaeCie100; + testResultsExcelModel.Rubbing_C_100___GS = rubbingresult.Gs100 == null ? 0.0 : (double)rubbingresult.Gs100; + testResultsExcelModel.Rubbing_C_200___DE = rubbingresult.DeltaeCie200 == null ? 0.0 : (double)rubbingresult.DeltaeCie200; + testResultsExcelModel.Rubbing_C_200___GS = rubbingresult.Gs200 == null ? 0.0 : (double)rubbingresult.Gs200; + } + else if (rubbingresult.TestResultColor == TestResultColors.MAGENTA) + { + testResultsExcelModel.Rubbing_M_100___DE = rubbingresult.DeltaeCie100 == null ? 0.0 : (double)rubbingresult.DeltaeCie100; + testResultsExcelModel.Rubbing_M_100___GS = rubbingresult.Gs100 == null ? 0.0 : (double)rubbingresult.Gs100; + testResultsExcelModel.Rubbing_M_200___DE = rubbingresult.DeltaeCie200 == null ? 0.0 : (double)rubbingresult.DeltaeCie200; + testResultsExcelModel.Rubbing_M_200___GS = rubbingresult.Gs200 == null ? 0.0 : (double)rubbingresult.Gs200; + } + else if (rubbingresult.TestResultColor == TestResultColors.YELLOW) + { + testResultsExcelModel.Rubbing_Y_100___DE = rubbingresult.DeltaeCie100 == null ? 0.0 : (double)rubbingresult.DeltaeCie100; + testResultsExcelModel.Rubbing_Y_100___GS = rubbingresult.Gs100 == null ? 0.0 : (double)rubbingresult.Gs100; + testResultsExcelModel.Rubbing_Y_200___DE = rubbingresult.DeltaeCie200 == null ? 0.0 : (double)rubbingresult.DeltaeCie200; + testResultsExcelModel.Rubbing_Y_200___GS = rubbingresult.Gs200 == null ? 0.0 : (double)rubbingresult.Gs200; + } + else if (rubbingresult.TestResultColor == TestResultColors.BLACK) + { + testResultsExcelModel.Rubbing_K_100___DE = rubbingresult.DeltaeCie100 == null ? 0.0 : (double)rubbingresult.DeltaeCie100; + testResultsExcelModel.Rubbing_K_100___GS = rubbingresult.Gs100 == null ? 0.0 : (double)rubbingresult.Gs100; + testResultsExcelModel.Rubbing_K_200___DE = rubbingresult.DeltaeCie200 == null ? 0.0 : (double)rubbingresult.DeltaeCie200; + testResultsExcelModel.Rubbing_K_200___GS = rubbingresult.Gs200 == null ? 0.0 : (double)rubbingresult.Gs200; + } + } + + testResultsExcelModel.Uniformity_Zone_1 = testresult.SeverityZone1Min == null ? "" : testresult.SeverityZone1Min.ToString() + "-" + testresult.SeverityZone1Max == null ? "" : testresult.SeverityZone1Max.ToString(); + testResultsExcelModel.Uniformity_Zone_2 = testresult.SeverityZone2Min == null ? "" : testresult.SeverityZone2Min.ToString() + "-" + testresult.SeverityZone2Max == null ? "" : testresult.SeverityZone2Max.ToString(); + + testResultsExcelModel.COF_REF = testresult.RefCof == null ? 0.0 : (double)testresult.RefCof; + testResultsExcelModel.CV_REF = 0.0; + testResultsExcelModel.COF_Black = testresult.ThreadCof == null ? 0.0 : (double)testresult.ThreadCof; + testResultsExcelModel.CV_Black = 0.0; + testResultsExcelModel.lub_amount = testresult.ThreadLub == null ? 0.0 : (double)testresult.ThreadLub; + + testResultsExcelModel.Comments = testresult.Comment; + testResultsExcelModel.Conclusion = testresult.Conclusions; + testResultsExcelModelList.Add(testResultsExcelModel); + } + } + IsFree = true; + } + catch (Exception ex) + { + LogManager.Log(ex, $"Error loading TestResults for saving in Excel file.\n{ex.FlattenMessage()}"); + } + finally + { + IsFree = true; + } + } } } diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml index 53ed5dc2c..17a68afb0 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml @@ -267,16 +267,14 @@ - - - + Conclusion: - + Comments: - + @@ -414,8 +412,8 @@ - - - + @@ -424,8 +422,8 @@ - - - + @@ -434,8 +432,8 @@ - - - + @@ -444,8 +442,8 @@ - - - + @@ -454,8 +452,8 @@ - - - + @@ -464,8 +462,8 @@ - - - + -- cgit v1.3.1 From ad251a8c9af9b1728cc53acfe672cee83949c71b Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Wed, 1 Dec 2021 12:34:21 +0200 Subject: #5823 - Set Default value = 0 For Test result GS100 and GS200. --- .../Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml | 4 ++-- Software/Visual_Studio/Tango.BL/Entities/RubbingResult.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views') diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml index 17a68afb0..50a2537e1 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml @@ -369,7 +369,7 @@ - + @@ -381,7 +381,7 @@ - + diff --git a/Software/Visual_Studio/Tango.BL/Entities/RubbingResult.cs b/Software/Visual_Studio/Tango.BL/Entities/RubbingResult.cs index eb52386a2..4d3b0015d 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/RubbingResult.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/RubbingResult.cs @@ -14,9 +14,9 @@ namespace Tango.BL.Entities public RubbingResult(): base() { DeltaeCie100 = 0.0; - Gs100 = 1.0; + Gs100 = 0.0; DeltaeCie200 = 0.0; - Gs200 = 1.0; + Gs200 = 0.0; } #region value to enum conversion -- cgit v1.3.1