From 20f49c625cd32b95154db138ed7eeebbadd04bf7 Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Mon, 1 Nov 2021 14:53:16 +0200 Subject: Color selection and Job sequence package. Redesign list control, move Color Selection View to dialogs, implement save. --- .../Converters/ColorTabToVisibilityConverter.cs | 2 +- .../Dialogs/ColorSelectionView.xaml | 311 +++ .../Dialogs/ColorSelectionView.xaml.cs | 54 + .../Dialogs/ColorSelectionViewVM.cs | 340 +++ .../Tango.PPC.JobsV2/Dialogs/JobCreationView.xaml | 161 +- .../Tango.PPC.JobsV2/Dialogs/JobCreationViewVM.cs | 41 +- .../Tango.PPC.JobsV2/Dialogs/RepeatJobView.xaml | 32 + .../Tango.PPC.JobsV2/Dialogs/RepeatJobView.xaml.cs | 28 + .../Tango.PPC.JobsV2/Dialogs/RepeatJobViewVM.cs | 39 + .../Images/JobView/job_details.png | Bin 406 -> 489 bytes .../Tango.PPC.JobsV2/Models/BrushStopModel.cs | 207 +- .../Modules/Tango.PPC.JobsV2/Models/JobModel.cs | 32 +- .../Tango.PPC.JobsV2/Models/SegmentModel.cs | 142 +- .../ColorSelectionNavigationObject.cs | 20 - .../Tango.PPC.JobsV2/Tango.PPC.JobsV2.csproj | 27 +- .../Modules/Tango.PPC.JobsV2/ViewModelLocator.cs | 7 +- .../ViewModels/ColorSelectionToolViewVM.cs | 285 --- .../Tango.PPC.JobsV2/ViewModels/JobViewVM.cs | 616 +++--- .../Tango.PPC.JobsV2/ViewModels/JobsViewVM.cs | 5 +- .../Views/ColorSelectionToolView.xaml | 324 --- .../Views/ColorSelectionToolView.xaml.cs | 61 - .../Modules/Tango.PPC.JobsV2/Views/JobView.xaml | 89 +- .../Modules/Tango.PPC.JobsV2/Views/JobView.xaml.cs | 31 +- .../Modules/Tango.PPC.JobsV2/Views/MainView.xaml | 1 - .../PPC/Tango.PPC.Common/Resources/Merged.xaml | 4 + .../PPC/Tango.PPC.Common/Resources/Styles.xaml | 8 +- .../Visual_Studio/Tango.BL/DTO/BrushStopDTOBase.cs | 24 + .../Tango.BL/DTO/MediaMaterialDTOBase.cs | 8 + .../Visual_Studio/Tango.BL/Entities/BrushStop.cs | 4 +- .../Tango.BL/Entities/BrushStopBase.cs | 114 + .../Tango.BL/Entities/MediaMaterialBase.cs | 38 + .../Tango.BL/Enumerations/BitTypes.cs | 950 ++++----- .../Tango.BL/Enumerations/ColorSpaces.cs | 3 +- .../Tango.BL/Enumerations/FiberShapes.cs | 36 - .../Tango.BL/Enumerations/MediaMaterials.cs | 8 +- .../Tango.BL/Enumerations/MediaPurposes.cs | 6 + .../Visual_Studio/Tango.BL/Enumerations/Rmls.cs | 12 + .../Visual_Studio/Tango.BL/ObservablesContext.cs | 288 +-- .../ObservablesEntitiesAdapterExtension.cs | 2192 ++++++++++---------- .../ObservablesStaticCollectionsExtension.cs | 2192 ++++++++++---------- .../Tango.DAL.Remote/DB/BRUSH_STOPS.cs | 3 + .../Tango.DAL.Remote/DB/MEDIA_MATERIALS.cs | 1 + .../Tango.DAL.Remote/DB/RemoteADO.edmx | 12 + .../Tango.DAL.Remote/DB/RemoteADO.edmx.diagram | 176 +- .../Tango.SharedUI/Controls/NavigationControl.cs | 5 +- .../Tango.Touch/Controls/TouchNumericTextBox.cs | 24 +- .../Tango.Touch/Controls/TouchNumericTextBox.xaml | 10 +- .../Tango.Touch/Controls/TouchTextBox.xaml | 5 +- .../Visual_Studio/Tango.Touch/Resources/Fonts.xaml | 1 + .../Tango.Touch/Styles/TouchExpander.xaml | 107 + .../Styles/TouchNumericUpDownControl.xaml | 98 + .../Visual_Studio/Tango.Touch/Tango.Touch.csproj | 10 +- .../Visual_Studio/Tango.Touch/Themes/Generic.xaml | 2 + .../TouchColorPickerCMYKControl.cs | 16 +- 54 files changed, 4803 insertions(+), 4409 deletions(-) create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionView.xaml create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionView.xaml.cs create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionViewVM.cs create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobView.xaml create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobView.xaml.cs create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobViewVM.cs delete mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/NavigationObjects/ColorSelectionNavigationObject.cs delete mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/ColorSelectionToolViewVM.cs delete mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/ColorSelectionToolView.xaml delete mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/ColorSelectionToolView.xaml.cs create mode 100644 Software/Visual_Studio/Tango.Touch/Styles/TouchExpander.xaml create mode 100644 Software/Visual_Studio/Tango.Touch/Styles/TouchNumericUpDownControl.xaml (limited to 'Software/Visual_Studio') diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Converters/ColorTabToVisibilityConverter.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Converters/ColorTabToVisibilityConverter.cs index 9189d6172..6f9a95ccf 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Converters/ColorTabToVisibilityConverter.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Converters/ColorTabToVisibilityConverter.cs @@ -6,7 +6,7 @@ using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Data; -using static Tango.PPC.Jobs.ViewModels.ColorSelectionToolViewVM; +using static Tango.PPC.Jobs.Dialogs.ColorSelectionViewVM; namespace Tango.PPC.Jobs.Converters { diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionView.xaml new file mode 100644 index 000000000..a095ff7aa --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionView.xaml @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + My Colors + + + + + + + + + + + + + + Job Palette + + + + + CANCEL + CONFIRM + + + + + + + + + + + + + + + + + + Color Selection Tool + + + + + + + + + HSB + CIELab + RGB + CMYK + Catalogs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionView.xaml.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionView.xaml.cs new file mode 100644 index 000000000..550390f44 --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionView.xaml.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; +using Tango.PPC.Jobs.ViewModels; + +namespace Tango.PPC.Jobs.Dialogs +{ + /// + /// Interaction logic for ColorSelectionView.xaml + /// + public partial class ColorSelectionView : UserControl + { + private ColorSelectionViewVM _vm; + + public ColorSelectionView() + { + InitializeComponent(); + + Loaded += (_, __) => + { + _vm = DataContext as ColorSelectionViewVM; + }; + } + + + private void TouchNavigationLinks_SelectionChanged(object sender, SelectionChangedEventArgs e) + { + + } + + private void TouchNavigationLinks_OnPreviewMouseDown(object sender, MouseButtonEventArgs e) + { + if (_vm != null && _vm.SelectedBrushStop != null && true == _vm.SelectedBrushStop.IsLiquidVolumesOutOfRange) + { + var item = ItemsControl.ContainerFromElement(sender as ListBox, e.OriginalSource as DependencyObject) as ListBoxItem; + if (item != null) + { + e.Handled = true; + } + } + } + } +} diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionViewVM.cs new file mode 100644 index 000000000..83128a374 --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/ColorSelectionViewVM.cs @@ -0,0 +1,340 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.BL.Enumerations; +using Tango.ColorConversion; +using Tango.Core.Commands; +using Tango.Core.Threading; +using Tango.PPC.Common; +using Tango.PPC.Common.Navigation; +using Tango.PPC.Jobs.Models; +using Tango.PPC.Jobs.NavigationObjects; +using Tango.PPC.Jobs.ViewContracts; +using Tango.SharedUI; + +namespace Tango.PPC.Jobs.Dialogs +{ + public class ColorSelectionViewVM : DialogViewVM + { + public enum ColorTab + { + [Description("HSB")] + HSB = 5, + [Description("CIELab")] + CIELab = 3, + [Description("RGB")] + RGB = 1, + [Description("CMYK")] + Volume = 0, + [Description("Catalog")] + Catalog = 2 + } + + public class DialogObject + { + public SegmentModel SelectedSegment { get; set; } + public BrushStopModel BrushStopForEdit { get; set; } + /// + /// True when first brush is open for editing + /// + public bool IsEditingMode { get; set; } + } + + + private ActionTimer _volumeConversionTimer; + private IColorConverter _converter; + + + #region Properties + + private bool _isEditMode; + + public bool IsEditMode + { + get { return _isEditMode; } + set + { + _isEditMode = value; + RaisePropertyChangedAuto(); + } + } + + private int _selectedColorTabIndex; + /// + /// Gets or sets the index of the selected category. + /// + public int SelectedColorTabIndex + { + get { return _selectedColorTabIndex; } + set + { + if(_selectedColorTabIndex != value) + { + _selectedColorTabIndex = value; + RaisePropertyChangedAuto(); + switch (_selectedColorTabIndex) + { + case 0: + { + SelectedColorTab = ColorTab.HSB; + break; + } + case 1: + { + SelectedColorTab = ColorTab.CIELab; + break; + } + case 2: + { + SelectedColorTab = ColorTab.RGB; + break; + } + case 3: + { + SelectedColorTab = ColorTab.Volume; + break; + } + case 4: + { + SelectedColorTab = ColorTab.Catalog; + break; + } + } + } + } + } + + private ColorTab _selectedColorTab; + /// + /// Gets or sets the selected category. + /// + /// + public ColorTab SelectedColorTab + { + get { + return _selectedColorTab; + } + set + { + if (_selectedColorTab != value) + { + _selectedColorTab = value; + switch (SelectedColorTab) + { + case ColorTab.HSB: + { + SelectedColorTabIndex = 0; + break; + } + case ColorTab.CIELab: + { + SelectedColorTabIndex = 1; + break; + } + case ColorTab.RGB: + { + SelectedColorTabIndex = 2; + break; + } + case ColorTab.Volume: + { + SelectedColorTabIndex = 3; + break; + } + case ColorTab.Catalog: + { + SelectedColorTabIndex = 4; + break; + } + } + + OnSelectedtabChanged(); + RaisePropertyChangedAuto(); + } + } + } + + private int _segmentIndex; + + public int SegmentIndex + { + get { return _segmentIndex; } + set + { + _segmentIndex = value; + RaisePropertyChangedAuto(); + } + } + + + private BrushStopModel _initialBrushStop; + /// + /// Gets or sets the initial brush stop. + /// + public BrushStopModel InitialBrushStop + { + get { return _initialBrushStop; } + set + { + _initialBrushStop = value; + RaisePropertyChangedAuto(); + } + } + + private BrushStopModel _selectedBrushStop; + /// + /// Gets or sets the edited brush stop. + /// + public BrushStopModel SelectedBrushStop + { + get { return _selectedBrushStop; } + set + { + _selectedBrushStop = value; + RaisePropertyChangedAuto(); + } + } + + public double MaxCyanValue + { + get + { + return GetMaxCMYKValueOrDefault(LiquidTypes.Cyan); + } + } + + public double MaxMagentaValue + { + get + { + return GetMaxCMYKValueOrDefault(LiquidTypes.Magenta); + } + } + + public double MaxYellowValue + { + get + { + return GetMaxCMYKValueOrDefault(LiquidTypes.Yellow); + } + } + + public double MaxBlackValue + { + get + { + return GetMaxCMYKValueOrDefault(LiquidTypes.Black); + } + } + + public DialogObject DialogEditObject { get; set; } + + #endregion + + public ColorSelectionViewVM() + { + SelectedColorTab = ColorTab.RGB; + _volumeConversionTimer = new ActionTimer(TimeSpan.FromMilliseconds(50)); + _converter = new DefaultColorConverter(); + } + + public override void OnShow() + { + base.OnShow(); + + SegmentIndex = DialogEditObject.SelectedSegment.SegmentIndex; + IsEditMode = DialogEditObject.IsEditingMode; + if (DialogEditObject.IsEditingMode) + { + InitialBrushStop = DialogEditObject.BrushStopForEdit; + SelectedBrushStop = InitialBrushStop.Clone(); + SelectedBrushStop.ColorSpace = InitialBrushStop.ColorSpace; + + SelectedColorTab = (ColorTab)SelectedBrushStop.ColorSpace; + } + else + { + SelectedBrushStop = DialogEditObject.BrushStopForEdit; + SelectedColorTab = ColorTab.RGB; + } + UpdateVolumesMaxValues(); + } + + private void OnSelectedtabChanged() + { + switch (SelectedColorTab) + { + case ColorTab.HSB: + { + if (SelectedBrushStop != null) + { + SelectedBrushStop.ConvertColorToHSB(); + } + + return; + } + case ColorTab.RGB: + { + if (SelectedBrushStop != null) + { + SelectedBrushStop.ConvertColorToRGB(); + } + return; + } + case ColorTab.CIELab: + { + if (SelectedBrushStop != null) + { + SelectedBrushStop.ConvertColorToLAB(); + } + return; + } + case ColorTab.Volume: + { + if (SelectedBrushStop != null) + { + SelectedBrushStop.ConvertColorToVolume(); + } + return; + } + } + } + + #region Methods + + private double GetMaxCMYKValueOrDefault(LiquidTypes type) + { + if (SelectedBrushStop != null && SelectedBrushStop.SegmentModel != null && SelectedBrushStop.SegmentModel.Job != null && SelectedBrushStop.SegmentModel.Job.Rml != null) + { + var liquidTypesRml = SelectedBrushStop.SegmentModel.Job.Rml.LiquidTypesRmls.FirstOrDefault(x => x.LiquidType.Type == type); + if (liquidTypesRml != null) + { + //var test = liquidTypesRml.GetMaxCalibrationValue(); + + return liquidTypesRml.GetMaxCalibrationValue(); + } + + } + return 100; + } + + private void UpdateVolumesMaxValues() + { + RaisePropertyChanged(nameof(MaxCyanValue)); + RaisePropertyChanged(nameof(MaxMagentaValue)); + RaisePropertyChanged(nameof(MaxYellowValue)); + RaisePropertyChanged(nameof(MaxBlackValue)); + } + + protected override void Accept() + { + base.Accept(); + } + + #endregion + + } +} diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/JobCreationView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/JobCreationView.xaml index 250e3959d..69bbbdb05 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/JobCreationView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/JobCreationView.xaml @@ -9,7 +9,7 @@ xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:touch="clr-namespace:Tango.Touch.Controls;assembly=Tango.Touch" mc:Ignorable="d" - Background="{StaticResource TangoPrimaryBackgroundBrush}" d:DesignHeight="861" d:DesignWidth="662" Width="662" Height="861" d:DataContext="{d:DesignInstance Type=local:JobCreationViewVM, IsDesignTimeCreatable=False}"> + Background="{StaticResource TangoPrimaryBackgroundBrush}" d:DesignHeight="861" d:DesignWidth="662" Width="750" Height="1200" d:DataContext="{d:DesignInstance Type=local:JobCreationViewVM, IsDesignTimeCreatable=False}"> @@ -20,96 +20,85 @@ - - CANCEL - OK - + + CANCEL + OK + + - - - Job Details - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + Job Details - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + Duplicate + + + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/JobCreationViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/JobCreationViewVM.cs index f571cd519..66be7bd04 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/JobCreationViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/JobCreationViewVM.cs @@ -5,6 +5,7 @@ using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; using Tango.BL.Enumerations; +using Tango.Core.Commands; using Tango.SharedUI; namespace Tango.PPC.Jobs.Dialogs @@ -67,17 +68,51 @@ namespace Tango.PPC.Jobs.Dialogs set { _selectedSpoolType = value; RaisePropertyChangedAuto(); } } - + + private double _whiteGap; + + public double WhiteGap + { + get { return _whiteGap; } + set { _whiteGap = value; + RaisePropertyChangedAuto(); + } + } + + + private bool _showDuplicate; + + public bool ShowDuplicate + { + get { return _showDuplicate; } + set { _showDuplicate = value; + RaisePropertyChangedAuto(); + + } + } + + public bool IsDuplicate { get; set; } + public RelayCommand DuplicateCommand { get; set; } /// /// Initializes a new instance of the class. /// /// The supported job types. /// The supported color spaces - public JobCreationViewVM(List spoolTypes, List rmls) : base() + public JobCreationViewVM(List spoolTypes, List rmls, double whitegap, bool showDuplicate) : base() { JobName = "Unnamed"; SpoolTypes = spoolTypes; - Rmls = rmls.OrderBy(x => x.Name).ToList(); + Rmls = rmls.OrderBy(x => x.Name).ToList(); + DuplicateCommand = new RelayCommand(Duplicate); + IsDuplicate = false; + ShowDuplicate = showDuplicate; + WhiteGap = whitegap; + } + + private void Duplicate(object obj) + { + IsDuplicate = true; + Accept(); } protected override bool CanOK() diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobView.xaml new file mode 100644 index 000000000..90c5b8b9f --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobView.xaml @@ -0,0 +1,32 @@ + + + + + + + Copy Job Summary + + + + + + Repeat: + + Units + + + + + OK + + + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobView.xaml.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobView.xaml.cs new file mode 100644 index 000000000..dff1ced26 --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobView.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Tango.PPC.Jobs.Dialogs +{ + /// + /// Interaction logic for RepeatJob.xaml + /// + public partial class RepeatJobView : UserControl + { + public RepeatJobView() + { + InitializeComponent(); + } + } +} diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobViewVM.cs new file mode 100644 index 000000000..4cf5d8c95 --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Dialogs/RepeatJobViewVM.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.SharedUI; + +namespace Tango.PPC.Jobs.Dialogs +{ + public class RepeatJobViewVM : DialogViewVM + { + private int _repeats; + + public int Repeats + { + get { return _repeats; } + set { _repeats = value; + RaisePropertyChangedAuto(); + } + } + + private int _maxrepeations; + + public int MaxRepeations + { + get { + return _maxrepeations; } + set { _maxrepeations = value; + RaisePropertyChangedAuto(); + } + } + + + public RepeatJobViewVM() + { + Repeats = 1; + } + } +} diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Images/JobView/job_details.png b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Images/JobView/job_details.png index 1ccee4475..fa5a1f81f 100644 Binary files a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Images/JobView/job_details.png and b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Images/JobView/job_details.png differ diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/BrushStopModel.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/BrushStopModel.cs index 78ce8f1a7..3447cec8e 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/BrushStopModel.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/BrushStopModel.cs @@ -13,11 +13,21 @@ using Tango.ColorConversion; using System.Reflection; using Tango.BL.Dispensing; using Tango.BL; +using Tango.Core.ExtensionMethods; namespace Tango.PPC.Jobs.Models { public class BrushStopModel : ViewModel { + public enum PositionStatus + { + First = 1, + FirstColor = 2, + Middle = 3, + SecondColor = 4, + Last = 5 + } + private ActionTimer _volumeConversionTimer; private IColorConverter _converter; public const double MAX_INK_UPTAKE = 400; @@ -45,7 +55,7 @@ namespace Tango.PPC.Jobs.Models { _cyan = value; RaisePropertyChangedAuto(); - OnCMYKChanged(); + OnVolumeChanged(); } } } @@ -69,7 +79,7 @@ namespace Tango.PPC.Jobs.Models { _magenta = value; RaisePropertyChangedAuto(); - OnCMYKChanged(); + OnVolumeChanged(); } } } @@ -93,7 +103,7 @@ namespace Tango.PPC.Jobs.Models { _yellow = value; RaisePropertyChangedAuto(); - OnCMYKChanged(); + OnVolumeChanged(); } } } @@ -116,7 +126,7 @@ namespace Tango.PPC.Jobs.Models { _black = value; RaisePropertyChangedAuto(); - OnCMYKChanged(); + OnVolumeChanged(); } } } @@ -306,29 +316,6 @@ namespace Tango.PPC.Jobs.Models } } - - protected Boolean _istransparent; - - /// - /// Gets or sets the BrushStopModel is transparent. - /// - public Boolean IsTransparent - { - get - { - return _istransparent; - } - set - { - if (_istransparent != value) - { - _istransparent = value; - RaisePropertyChangedAuto(); - - } - } - } - protected Double _offsetpercent; /// @@ -399,37 +386,14 @@ namespace Tango.PPC.Jobs.Models } } - private bool _isFirst; - - public bool IsFirst - { - get { return _isFirst; } - set { _isFirst = value; } - } - private bool _isLast; - - public bool IsLast - { - get { return _isLast; } - set { _isLast = value; } - } - - private bool _isFirstColorBrush; - - public bool IsFirstColorBrush - { - get { return _isFirstColorBrush; } - set { _isFirstColorBrush = value; } - } - - private bool _isSecondColorBrush; + private PositionStatus _position; - public bool IsSecondColorBrush + public PositionStatus Position { - get { return _isSecondColorBrush; } - set { _isSecondColorBrush = value; } + get { return _position; } + set { _position = value; } } - + protected ColorSpaces _colorspace; public virtual ColorSpaces ColorSpace @@ -514,24 +478,7 @@ namespace Tango.PPC.Jobs.Models get { return _segmentmodel; } set { _segmentmodel = value; } } - - private BrushStop _dummyBrushStop; - - public BrushStop DummyBrushStop - { - get { return _dummyBrushStop; } - set { _dummyBrushStop = value; } - } - - private bool _isMiddle; - - public bool IsMiddle - { - get { return _isMiddle; } - set { _isMiddle = value; - RaisePropertyChangedAuto(); - } - } + private bool _outOfGamutChecked; /// @@ -556,11 +503,6 @@ namespace Tango.PPC.Jobs.Models { _isOutOfGamut = value; RaisePropertyChangedAuto(); - - //if (SegmentModel != null) - //{ - // Segment.RaiseHasOutOfGamutBrushStop(); - //} } } } @@ -576,7 +518,8 @@ namespace Tango.PPC.Jobs.Models _b = 0; _red = _green = _blue = 255; _cyan = _magenta = _yellow = _black = 0; - IsMiddle = IsFirstColorBrush = IsSecondColorBrush = false; + StopIndex = 1; + Position = PositionStatus.FirstColor; SegmentModel = segmentModel; IsOutOfGamut = false; _volumeConversionTimer = new ActionTimer(TimeSpan.FromMilliseconds(50)); @@ -686,17 +629,33 @@ namespace Tango.PPC.Jobs.Models public BrushStopModel Clone() { - var cloned = (BrushStopModel)Activator.CreateInstance(typeof(BrushStopModel), SegmentModel); + var cloned = new BrushStopModel(SegmentModel); + cloned.StopIndex = StopIndex; cloned.PreventPropertyUpdate = true; - - foreach (var prop in typeof(BrushStopModel).GetProperties(BindingFlags.Public | BindingFlags.Instance).Where(x => x.SetMethod != null)) - { - if (!prop.PropertyType.IsGenericTypeAndNotNullable()) - { - prop.SetValue(cloned, prop.GetValue(this)); - } - } - cloned.SegmentModel = SegmentModel; + cloned.Red = Red; + cloned.Green = Green; + cloned.Blue = Blue; + cloned.L = L; + cloned.A = A; + cloned.B = B; + cloned.Cyan = Cyan; + cloned.Magenta = Magenta; + cloned.Yellow = Yellow; + cloned.Black = Black; + cloned.Hue = Hue; + cloned.Saturation = Saturation; + cloned.Brightness = Brightness; + cloned.Color = Color; + + cloned.ColorCatalogsItem = ColorCatalogsItem; + cloned.ColorSpace = ColorSpace; + cloned.DisplayedColor = DisplayedColor; + cloned.OffsetMeters = OffsetMeters; + cloned.OffsetPercent = OffsetPercent; + cloned.Position = Position; + cloned.IsOutOfGamut = IsOutOfGamut; + cloned.OutOfGamutChecked = OutOfGamutChecked; + //this.MapPropertiesTo(cloned, MappingFlags.NoReferenceTypes); cloned.PreventPropertyUpdate = false; return cloned; } @@ -719,12 +678,12 @@ namespace Tango.PPC.Jobs.Models #region changes - private void OnCMYKChanged() + private void OnVolumeChanged() { if (PreventPropertyUpdate) return; - ColorSpace = ColorSpaces.CMYK; - RaisePropertyChanged(nameof(IsCMYKLiquidVolumesOutOfRange)); + ColorSpace = ColorSpaces.Volume; + RaisePropertyChanged(nameof(IsLiquidVolumesOutOfRange)); OnBrushStopFieldValueChanged(); } @@ -796,7 +755,7 @@ namespace Tango.PPC.Jobs.Models { Hsb hsb = null; - if (ColorSpace == ColorSpaces.CMYK) + if (ColorSpace == ColorSpaces.Volume) { BrushStop stop = CreateBrushStop(ColorSpaces.Volume); try @@ -806,7 +765,7 @@ namespace Tango.PPC.Jobs.Models _red = output.SingleCoordinates.Red; _green = output.SingleCoordinates.Green; _blue = output.SingleCoordinates.Blue; - IsOutOfGamut = _converter.IsOutOfGamut(stop, SegmentModel.Job.Machine.Configuration, SegmentModel.Job.Rml); + IsOutOfGamut = output.OutOfGamut; } catch (Exception ex) { @@ -845,7 +804,7 @@ namespace Tango.PPC.Jobs.Models { if (ColorSpace != ColorSpaces.RGB) { - if (ColorSpace == ColorSpaces.CMYK) + if (ColorSpace == ColorSpaces.Volume) { BrushStop stop = CreateBrushStop(ColorSpaces.Volume); try @@ -855,7 +814,7 @@ namespace Tango.PPC.Jobs.Models _red = output.SingleCoordinates.Red; _green = output.SingleCoordinates.Green; _blue = output.SingleCoordinates.Blue; - IsOutOfGamut = _converter.IsOutOfGamut(stop, SegmentModel.Job.Machine.Configuration, SegmentModel.Job.Rml); + IsOutOfGamut = output.OutOfGamut; } catch (Exception ex) { @@ -885,7 +844,7 @@ namespace Tango.PPC.Jobs.Models if (ColorSpace != ColorSpaces.LAB) { Lab lab = null; - if (ColorSpace == ColorSpaces.CMYK) + if (ColorSpace == ColorSpaces.Volume) { BrushStop stop = CreateBrushStop(ColorSpaces.Volume); try @@ -895,11 +854,11 @@ namespace Tango.PPC.Jobs.Models _l = output.SingleCoordinates.L; _a = output.SingleCoordinates.A; _b = output.SingleCoordinates.B; - IsOutOfGamut = _converter.IsOutOfGamut(stop, SegmentModel.Job.Machine.Configuration, SegmentModel.Job.Rml); + IsOutOfGamut = output.OutOfGamut; } catch (Exception ex) { - LogManager.Log(ex, "An error occurred while trying to get volume => RGB from conversion engine."); + LogManager.Log(ex, "An error occurred while trying to convert volume to LAB."); } finally { @@ -929,9 +888,9 @@ namespace Tango.PPC.Jobs.Models } } - public void ConvertColorToCMYK() + public void ConvertColorToVolume() { - if (ColorSpace != ColorSpaces.CMYK) + if (ColorSpace != ColorSpaces.Volume) { ColorSpaces colorSpace = ColorSpace; if (ColorSpace == ColorSpaces.HSB) @@ -944,16 +903,16 @@ namespace Tango.PPC.Jobs.Models IsBusy = true; var output = _converter.Convert(stop, SegmentModel.Job.Machine.Configuration, SegmentModel.Job.Rml, false, false, false); - _cyan = output.SingleCoordinates.OutputLiquids.SingleOrDefault(x => x.LiquidType == PMR.ColorLab.LiquidType.Cyan).Volume; - _yellow = output.SingleCoordinates.OutputLiquids.SingleOrDefault(x => x.LiquidType == PMR.ColorLab.LiquidType.Yellow).Volume; - _magenta = output.SingleCoordinates.OutputLiquids.SingleOrDefault(x => x.LiquidType == PMR.ColorLab.LiquidType.Magenta).Volume; - _black = output.SingleCoordinates.OutputLiquids.SingleOrDefault(x => x.LiquidType == PMR.ColorLab.LiquidType.Magenta).Volume; + _cyan = (output.SingleCoordinates.OutputLiquids.SingleOrDefault(x => x.LiquidType == PMR.ColorLab.LiquidType.Cyan).Volume) ; + _yellow = (output.SingleCoordinates.OutputLiquids.SingleOrDefault(x => x.LiquidType == PMR.ColorLab.LiquidType.Yellow).Volume); + _magenta = (output.SingleCoordinates.OutputLiquids.SingleOrDefault(x => x.LiquidType == PMR.ColorLab.LiquidType.Magenta).Volume); + _black = (output.SingleCoordinates.OutputLiquids.SingleOrDefault(x => x.LiquidType == PMR.ColorLab.LiquidType.Black).Volume); IsOutOfGamut = false; RaisePropertyChanged(nameof(Cyan)); RaisePropertyChanged(nameof(Yellow)); RaisePropertyChanged(nameof(Magenta)); RaisePropertyChanged(nameof(Black)); - RaisePropertyChanged(nameof(IsCMYKLiquidVolumesOutOfRange)); + RaisePropertyChanged(nameof(IsLiquidVolumesOutOfRange)); } catch (Exception ex) { @@ -1010,11 +969,11 @@ namespace Tango.PPC.Jobs.Models } return 0.0; } - public bool IsCMYKLiquidVolumesOutOfRange + public bool IsLiquidVolumesOutOfRange { get { - if (ColorSpace == BL.Enumerations.ColorSpaces.CMYK) + if (ColorSpace == BL.Enumerations.ColorSpaces.Volume) { var sum = GetColorNLPerCm(Cyan, LiquidTypes.Cyan) + GetColorNLPerCm(Magenta, LiquidTypes.Magenta) + GetColorNLPerCm(Yellow, LiquidTypes.Yellow) + GetColorNLPerCm(Black, LiquidTypes.Black); var maxLiq = GetTotalMaximumLiquidNlPerCMLimit(); @@ -1036,23 +995,16 @@ namespace Tango.PPC.Jobs.Models try { ColorSpaces colorSpace = ColorSpace; - if(ColorSpace == ColorSpaces.HSB) - { - colorSpace = ColorSpaces.RGB; - } - if (ColorSpace == ColorSpaces.CMYK) - { - colorSpace = ColorSpaces.Volume; - } + BrushStop stop = CreateBrushStop(colorSpace); Configuration configuration = SegmentModel.Job.Machine.Configuration; Rml rml = SegmentModel.Job.Rml; - RaisePropertyChanged(nameof(IsCMYKLiquidVolumesOutOfRange)); - if ( ColorSpace == BL.Enumerations.ColorSpaces.CMYK) + RaisePropertyChanged(nameof(IsLiquidVolumesOutOfRange)); + if ( ColorSpace == BL.Enumerations.ColorSpaces.Volume) { - if(IsCMYKLiquidVolumesOutOfRange) + if(IsLiquidVolumesOutOfRange) { IsBusy = false; return; @@ -1079,14 +1031,27 @@ namespace Tango.PPC.Jobs.Models Rgb rgb = new Rgb(lab.ToRgb()); DisplayedColor = Color.FromRgb((byte)rgb.R, (byte)rgb.G, (byte)rgb.B); //TODO ASK ROY - // DisplayedColor = Color.FromRgb((byte)output.SingleCoordinates.Red, (byte)output.SingleCoordinates.Green, (byte)output.SingleCoordinates.Blue); + //foreach (var outputLiquid in output.SingleCoordinates.OutputLiquids) + //{ + // var liquidVolume = stop.LiquidVolumes.SingleOrDefault(x => x.IdsPack.LiquidType.Code == outputLiquid.LiquidType.ToInt32()); + + // if (liquidVolume == null) + // { + // throw new NullReferenceException("Liquid volume not found for color conversion output liquid '" + outputLiquid.LiquidType + "'."); + // } + // liquidVolume.Volume = outputLiquid.Volume; + //} } else if (stop.BrushColorSpace == BL.Enumerations.ColorSpaces.RGB) { IsOutOfGamut = _converter.IsOutOfGamut(stop, configuration, rml); DisplayedColor = Color.FromRgb((byte)output.SingleCoordinates.Red, (byte)output.SingleCoordinates.Green, (byte)output.SingleCoordinates.Blue); - + } + else if (stop.BrushColorSpace == BL.Enumerations.ColorSpaces.HSB) + { + IsOutOfGamut = _converter.IsOutOfGamut(stop, configuration, rml); + DisplayedColor = Color.FromRgb((byte)output.SingleCoordinates.Red, (byte)output.SingleCoordinates.Green, (byte)output.SingleCoordinates.Blue); } } catch (Exception ex) diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/JobModel.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/JobModel.cs index 349b9049b..3bb6188d9 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/JobModel.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/JobModel.cs @@ -118,6 +118,7 @@ namespace Tango.PPC.Jobs.Models { _numberofunits = value; RaisePropertyChangedAuto(); + RaisePropertyChanged(nameof(LengthIncludingNumberOfUnits)); } } @@ -489,6 +490,11 @@ namespace Tango.PPC.Jobs.Models { RaisePropertyChanged(nameof(EffectiveSegments)); } + else if(e.PropertyName == nameof(SegmentModel.EnableInterSegment)) + { + OnLengthChanged(); + RaisePropertyChanged(nameof(EffectiveSegments)); + } else if(e.PropertyName == nameof(SegmentModel.IsSelected)) { if (_preventChange) return; @@ -532,6 +538,7 @@ namespace Tango.PPC.Jobs.Models public void CopySegments() { + SegmentsToCopy.Clear(); if (false == Segments.ToList().Any(x => x.IsSelected)) return; LogManager.Log("Copy selected segments."); @@ -552,14 +559,20 @@ namespace Tango.PPC.Jobs.Models } SegmentsToCopy.ForEach(x => x.RaiseSegmentBrushChanged()); - var selected = Segments.ToList().FindIndex(x => x.IsSelected); - if(selected != -1) + var selectedIndex = Segments.ToList().FindIndex(x => x.IsSelected); + if(selectedIndex == -1 || selectedIndex == (Segments.Count) - 1) { - Segments.ToList().InsertRange(selected, SegmentsToCopy); + foreach ( var newSegmentModel in SegmentsToCopy) + { + Segments.Add(newSegmentModel); + } } else { - Segments.ToList().AddRange(SegmentsToCopy); + foreach (var newSegmentModel in SegmentsToCopy) + { + Segments.Insert(selectedIndex++, newSegmentModel); + } } SegmentsToCopy.Clear(); } @@ -573,6 +586,17 @@ namespace Tango.PPC.Jobs.Models Segments.Where(i => i.IsSelected).ToList().ForEach(y => y.EnableInterSegment = true); } + public void SwapSegments(int index1, int index2) + { + if (index1 < 0 || index1 >= Segments.Count) + return; + if (index2 < 0 || index2 >= Segments.Count) + return; + var tmpIndex = Segments[index2].SegmentIndex; + Segments[index2].SegmentIndex = Segments[index1].SegmentIndex; + Segments[index1].SegmentIndex = tmpIndex; + } + #endregion } diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/SegmentModel.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/SegmentModel.cs index c7edecd41..a03c56a46 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/SegmentModel.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/SegmentModel.cs @@ -24,9 +24,10 @@ namespace Tango.PPC.Jobs.Models private ActionTimer _brushStopCollectionChangedActionTimer; #region Properties - - protected String _name; + public string GUID { get; set; } + + protected String _name; /// /// Gets or sets the SegmentModel name. /// @@ -108,7 +109,6 @@ namespace Tango.PPC.Jobs.Models _enableintersegment = value; RaisePropertyChangedAuto(); RaisePropertyChanged(nameof(LengthWithInterSegment)); - Job.OnLengthChanged(); } } } @@ -178,54 +178,51 @@ namespace Tango.PPC.Jobs.Models } public bool IsOffsetChanged { get; set; } - - private double _leftOffset; - + public double LeftOffset { - get { return _leftOffset; } - set { _leftOffset = value; - RaisePropertyChangedAuto(); - if (FirstBrushStop != null) + get { return FirstBrushStop != null? FirstBrushStop.OffsetPercent : 0; } + set { + + if (FirstBrushStop != null && FirstBrushStop.OffsetPercent != value) { - FirstBrushStop.OffsetPercent = _leftOffset/2; + FirstBrushStop.OffsetPercent = value; + RaisePropertyChangedAuto(); IsOffsetChanged = true; - RaiseSegmentBrushChanged(); + RaisePropertyChanged(nameof(SegmentBrush)); IsOffsetChanged = false; } } } - private double _middleOffset; - + public double MiddleOffset { - get { return _middleOffset; } - set { _middleOffset = value; - RaisePropertyChangedAuto(); - if (MiddleBrushStop != null) + get { return (MiddleBrushStop != null) ? MiddleBrushStop.OffsetPercent : 0; } + set { + + if (MiddleBrushStop != null && MiddleBrushStop.OffsetPercent != value) { - MiddleBrushStop.OffsetPercent = _middleOffset; - + MiddleBrushStop.OffsetPercent = value; + RaisePropertyChangedAuto(); IsOffsetChanged = true; - RaiseSegmentBrushChanged(); + RaisePropertyChanged(nameof(SegmentBrush)); IsOffsetChanged = false; } } } - - private double _rightOffset; - + public double RightOffset { - get { return _rightOffset; } - set { _rightOffset = value; - RaisePropertyChangedAuto(); - if (SecondBrushStop != null) + get { return SecondBrushStop != null ? SecondBrushStop.OffsetPercent: 0; } + set { + + if (SecondBrushStop != null && SecondBrushStop.OffsetPercent != value) { - SecondBrushStop.OffsetPercent = _rightOffset; + SecondBrushStop.OffsetPercent = value; + RaisePropertyChangedAuto(); IsOffsetChanged = true; - RaiseSegmentBrushChanged(); + RaisePropertyChanged(nameof(SegmentBrush)); IsOffsetChanged = false; } } @@ -255,7 +252,7 @@ namespace Tango.PPC.Jobs.Models get { if (BrushStops.Count > 1) - return BrushStops.Where(x => x.IsSecondColorBrush).FirstOrDefault(); + return BrushStops.Where(x => x.Position == BrushStopModel.PositionStatus.SecondColor).FirstOrDefault(); return null; } @@ -268,11 +265,12 @@ namespace Tango.PPC.Jobs.Models { get { - if (BrushStops.Count == 1) - return BrushStops[0]; - if (BrushStops.Count > 1) - return BrushStops.Where(x => x.IsFirstColorBrush).FirstOrDefault(); - + if(BrushStops.Count > 0) + { + var brushStop = BrushStops.Where(x => x.Position == BrushStopModel.PositionStatus.FirstColor).FirstOrDefault(); + return brushStop; + } + return null; } @@ -286,7 +284,7 @@ namespace Tango.PPC.Jobs.Models get { if (BrushStops.Count > 1) - return BrushStops.Where(x => x.IsMiddle).FirstOrDefault(); + return BrushStops.Where(x => x.Position == BrushStopModel.PositionStatus.Middle).FirstOrDefault(); return null; } @@ -321,14 +319,16 @@ namespace Tango.PPC.Jobs.Models public RelayCommand DeleteGapCommand { get; set; } #endregion - public SegmentModel(JobModel jobModel) + public SegmentModel(JobModel jobModel, string guid) { InitnewSegment(); Job = jobModel; + GUID = guid; } public SegmentModel() { + GUID = ""; InitnewSegment(); } @@ -356,14 +356,12 @@ namespace Tango.PPC.Jobs.Models if (_brush == null || _brush.GradientStops.Count != BrushStops.Count || IsOffsetChanged) { GradientStopCollection stops = new GradientStopCollection(); - - foreach (var stop in BrushStops.ToList().OrderBy(x => x.StopIndex).ToList()) { //TODO test if displayed is valid stop.IsValid Color color = stop.DisplayedColor; - stops.Add(new GradientStop(stop.IsTransparent ? Colors.Transparent : color, stop.OffsetPercent / 100d)); + stops.Add(new GradientStop( color, stop.OffsetPercent / 100d)); } LinearGradientBrush brush = new LinearGradientBrush(); @@ -381,7 +379,7 @@ namespace Tango.PPC.Jobs.Models { //TODO test if displayed is valid stop.IsValid Color color = BrushStops[i].DisplayedColor; - _brush.GradientStops[i].Color = BrushStops[i].IsTransparent ? Colors.Transparent : color; + _brush.GradientStops[i].Color = color; _brush.GradientStops[i].Offset = BrushStops[i].OffsetPercent / 100d; } @@ -391,17 +389,19 @@ namespace Tango.PPC.Jobs.Models public SegmentModel Clone() { - var cloned = (SegmentModel)Activator.CreateInstance(typeof(SegmentModel), this.Job); - - foreach (var prop in typeof(SegmentModel).GetProperties(BindingFlags.Public | BindingFlags.Instance).Where(x => x.SetMethod != null)) - { - if (!prop.PropertyType.IsGenericTypeAndNotNullable()) - { - prop.SetValue(cloned, prop.GetValue(this)); - } - } + var cloned = new SegmentModel(Job, GUID);//(SegmentModel)Activator.CreateInstance(typeof(SegmentModel), this.Job); + + cloned.Name = Name; + cloned.LeftOffset = LeftOffset; + cloned.MiddleOffset = MiddleOffset; + cloned.RightOffset = RightOffset; + cloned.IsOffsetChanged = IsOffsetChanged; + cloned.Length = Length; + cloned.IsSelected = false; + cloned.IsInterSegment = IsInterSegment; + cloned.EnableInterSegment = EnableInterSegment; cloned.BrushStops = BrushStops.Select(x => x.Clone()).ToSynchronizedObservableCollection(); - cloned.Job = Job; + cloned.SegmentIndex = SegmentIndex + 1; return cloned; @@ -427,30 +427,18 @@ namespace Tango.PPC.Jobs.Models BrushStopModel brushStop = firstBrush.Clone(); brushStop.StopIndex = 1; brushStop.OffsetPercent = 0; - brushStop.IsFirst = true; - brushStop.IsFirstColorBrush = false; - brushStop.IsMiddle = false; - brushStop.IsSecondColorBrush = false; - brushStop.IsLast = false; + brushStop.Position = BrushStopModel.PositionStatus.First; BrushStops.Add(brushStop); BrushStopModel colorbrushStop = firstBrush.Clone(); - colorbrushStop.IsFirstColorBrush = true; - colorbrushStop.IsFirst = false; - colorbrushStop.IsMiddle = false; - colorbrushStop.IsSecondColorBrush = false; - colorbrushStop.IsLast = false; + colorbrushStop.Position = BrushStopModel.PositionStatus.FirstColor; colorbrushStop.StopIndex = 2; colorbrushStop.OffsetPercent = 0; BrushStops.Add(colorbrushStop); BrushStopModel middleBrushStop = firstBrush.Clone(); middleBrushStop.StopIndex = 3; - middleBrushStop.IsMiddle = true; - middleBrushStop.IsFirst = false; - middleBrushStop.IsFirstColorBrush = false; - middleBrushStop.IsSecondColorBrush = false; - middleBrushStop.IsLast = false; + middleBrushStop.Position = BrushStopModel.PositionStatus.Middle; middleBrushStop.OffsetPercent = 50; middleBrushStop.Color = BrushStopModel.GetRelativeRGB(firstBrush.Color, secondBrush.Color, 0, 1, 0.5); middleBrushStop.DisplayedColor = BrushStopModel.GetRelativeRGB(firstBrush.DisplayedColor, secondBrush.DisplayedColor, 0, 1, 0.5); @@ -465,22 +453,14 @@ namespace Tango.PPC.Jobs.Models BrushStopModel secondbrushStop = secondBrush.Clone(); secondbrushStop.StopIndex = 4; - secondbrushStop.IsSecondColorBrush = true; - secondbrushStop.IsFirst = false; - secondbrushStop.IsFirstColorBrush = false; - secondbrushStop.IsMiddle = false; - secondbrushStop.IsLast = false; + secondbrushStop.Position = BrushStopModel.PositionStatus.SecondColor; secondbrushStop.OffsetPercent = 100; BrushStops.Add(secondbrushStop); BrushStopModel lastSecondBrushStop = secondBrush.Clone(); lastSecondBrushStop.StopIndex = 5; lastSecondBrushStop.OffsetPercent = 100; - lastSecondBrushStop.IsLast = true; - lastSecondBrushStop.IsFirst = false; - lastSecondBrushStop.IsFirstColorBrush = false; - lastSecondBrushStop.IsMiddle = false; - lastSecondBrushStop.IsSecondColorBrush = false; + lastSecondBrushStop.Position = BrushStopModel.PositionStatus.Last; ; BrushStops.Add(lastSecondBrushStop); } @@ -488,18 +468,18 @@ namespace Tango.PPC.Jobs.Models { target.SetNewColor(source); target.IsOutOfGamut = source.IsOutOfGamut; - if (target.IsFirstColorBrush) + if (target.Position == BrushStopModel.PositionStatus.FirstColor) { - BrushStopModel first = BrushStops.Where(x => x.IsFirst).FirstOrDefault(); + BrushStopModel first = BrushStops.Where(x => x.Position == BrushStopModel.PositionStatus.First).FirstOrDefault(); if(first != null) { first.SetNewColor(source); first.IsOutOfGamut = source.IsOutOfGamut; } } - else if(target.IsSecondColorBrush) + else if(target.Position == BrushStopModel.PositionStatus.SecondColor) { - BrushStopModel last = BrushStops.Where(x => x.IsLast).FirstOrDefault(); + BrushStopModel last = BrushStops.Where(x => x.Position == BrushStopModel.PositionStatus.Last).FirstOrDefault(); if(last != null) { last.SetNewColor(source); diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/NavigationObjects/ColorSelectionNavigationObject.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/NavigationObjects/ColorSelectionNavigationObject.cs deleted file mode 100644 index f8c1e81a0..000000000 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/NavigationObjects/ColorSelectionNavigationObject.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Tango.PPC.Jobs.Models; - -namespace Tango.PPC.Jobs.NavigationObjects -{ - public class ColorSelectionNavigationObject - { - public SegmentModel SelectedSegment { get; set; } - public BrushStopModel BrushStopForEdit { get; set; } - /// - /// True when first brush is open for editing - /// - public bool IsEditingMode { get; set; } - } - -} diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Tango.PPC.JobsV2.csproj b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Tango.PPC.JobsV2.csproj index d816fa42e..deb0e5cc9 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Tango.PPC.JobsV2.csproj +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Tango.PPC.JobsV2.csproj @@ -92,6 +92,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + MSBuild:Compile Designer @@ -124,6 +128,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + Designer MSBuild:Compile @@ -136,10 +144,6 @@ Designer MSBuild:Compile - - Designer - MSBuild:Compile - Designer MSBuild:Compile @@ -202,6 +206,9 @@ BasicColorCorrectionView.xaml + + ColorSelectionView.xaml + ImportCsvJobView.xaml @@ -234,6 +241,10 @@ + + RepeatJobView.xaml + + SpoolChangeView.xaml @@ -245,7 +256,6 @@ - @@ -269,16 +279,13 @@ - + - - ColorSelectionToolView.xaml - JobProgressView.xaml @@ -593,7 +600,7 @@ - + \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs index 4f357be2c..5298cf096 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs @@ -4,6 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Core.DI; +using Tango.PPC.Jobs.Dialogs; using Tango.PPC.Jobs.ViewModels; namespace Tango.PPC.Jobs @@ -21,7 +22,7 @@ namespace Tango.PPC.Jobs TangoIOC.Default.Register(); TangoIOC.Default.Register(); TangoIOC.Default.Register(); - TangoIOC.Default.Register(); + TangoIOC.Default.Register(); } /// @@ -94,11 +95,11 @@ namespace Tango.PPC.Jobs /// /// Gets the twine catalog view VM. /// - public static ColorSelectionToolViewVM ColorSelectionToolViewVM + public static ColorSelectionViewVM ColorSelectionToolViewVM { get { - return TangoIOC.Default.GetInstance(); + return TangoIOC.Default.GetInstance(); } } } diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/ColorSelectionToolViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/ColorSelectionToolViewVM.cs deleted file mode 100644 index aeb42f98b..000000000 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/ColorSelectionToolViewVM.cs +++ /dev/null @@ -1,285 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Tango.BL.Enumerations; -using Tango.ColorConversion; -using Tango.Core.Commands; -using Tango.Core.Threading; -using Tango.PPC.Common; -using Tango.PPC.Common.Navigation; -using Tango.PPC.Jobs.Models; -using Tango.PPC.Jobs.NavigationObjects; -using Tango.PPC.Jobs.ViewContracts; - -namespace Tango.PPC.Jobs.ViewModels -{ - public class ColorSelectionToolViewVM : PPCViewModel, INavigationResultProvider - { - public enum ColorTab - { - HSB, - CIELab, - RGB, - CMYK, - Catalogs - } - - private ActionTimer _volumeConversionTimer; - private IColorConverter _converter; - - - #region Properties - private bool _confirmed; - - private bool _isEditMode; - - public bool IsEditMode - { - get { return _isEditMode; } - set { _isEditMode = value; - RaisePropertyChangedAuto(); - } - } - - private int _selectedColorTabIndex; - /// - /// Gets or sets the index of the selected category. - /// - public int SelectedColorTabIndex - { - get { return _selectedColorTabIndex; } - set - { - _selectedColorTabIndex = value; - RaisePropertyChangedAuto(); - RaisePropertyChanged(nameof(SelectedColorTab)); - OnSelectedtabChanged(); - } - } - - /// - /// Gets or sets the selected category. - /// - public ColorTab SelectedColorTab - { - get { return (ColorTab)SelectedColorTabIndex; } - set - { - if (SelectedColorTabIndex != value.ToInt32()) - { - SelectedColorTabIndex = value.ToInt32(); - } - } - } - - private int _segmentIndex; - - public int SegmentIndex - { - get { return _segmentIndex; } - set { _segmentIndex = value; - RaisePropertyChangedAuto(); - } - } - - - private BrushStopModel _initialBrushStop; - /// - /// Gets or sets the initial brush stop. - /// - public BrushStopModel InitialBrushStop - { - get { return _initialBrushStop; } - set { - _initialBrushStop = value; - RaisePropertyChangedAuto(); } - } - - private BrushStopModel _selectedBrushStop; - /// - /// Gets or sets the edited brush stop. - /// - public BrushStopModel SelectedBrushStop - { - get { return _selectedBrushStop; } - set - { - _selectedBrushStop = value; - RaisePropertyChangedAuto(); - } - } - - public double MaxCyanValue - { - get - { - return GetMaxCMYKValueOrDefault( LiquidTypes.Cyan); - } - } - - public double MaxMagentaValue - { - get - { - return GetMaxCMYKValueOrDefault(LiquidTypes.Magenta); - } - } - - public double MaxYellowValue - { - get - { - return GetMaxCMYKValueOrDefault(LiquidTypes.Yellow); - } - } - - public double MaxBlackValue - { - get - { - return GetMaxCMYKValueOrDefault(LiquidTypes.Black); - } - } - - #endregion - - #region Command - /// - /// Gets or sets the OK command. - /// - public RelayCommand OKCommand { get; set; } - #endregion - - public ColorSelectionToolViewVM() - { - OKCommand = new RelayCommand(Confirm); - _volumeConversionTimer = new ActionTimer(TimeSpan.FromMilliseconds(50)); - _converter = new DefaultColorConverter(); - } - - #region Navigation - /// Confirms this instance. - /// - private void Confirm() - { - _confirmed = true; - - NavigationManager.NavigateBack(); - } - - public BrushStopModel GetNavigationResult() - { - if (_confirmed) - { - return SelectedBrushStop; - } - else - { - return null; - } - } - - public void OnNavigationObjectReceived(ColorSelectionNavigationObject obj) - { - SegmentIndex = obj.SelectedSegment.SegmentIndex; - IsEditMode = obj.IsEditingMode; - if (obj.IsEditingMode) - { - InitialBrushStop = obj.BrushStopForEdit; - // InitialBrushStop.ConvertColorToRGB(); - // InitialBrushStop.InitColor(); - SelectedBrushStop = InitialBrushStop.Clone(); - SelectedBrushStop.ColorSpace = InitialBrushStop.ColorSpace; - - if(SelectedBrushStop.ColorSpace == BL.Enumerations.ColorSpaces.RGB) - SelectedColorTab = ColorTab.RGB; - else if (SelectedBrushStop.ColorSpace == BL.Enumerations.ColorSpaces.LAB) - SelectedColorTab = ColorTab.CIELab; - else if (SelectedBrushStop.ColorSpace == BL.Enumerations.ColorSpaces.CMYK) - SelectedColorTab = ColorTab.CMYK; - else if (SelectedBrushStop.ColorSpace == BL.Enumerations.ColorSpaces.Catalog) - SelectedColorTab = ColorTab.Catalogs; - else SelectedColorTab = ColorTab.HSB; - } - else - { - SelectedBrushStop = obj.BrushStopForEdit; - SelectedColorTab = ColorTab.RGB; - } - UpdateCMYKMaxValues(); - _confirmed = false; - } - - private void OnSelectedtabChanged() - { - switch (SelectedColorTab) - { - case ColorTab.HSB: - { - if (SelectedBrushStop != null) - { - SelectedBrushStop.ConvertColorToHSB(); - } - - return; - } - case ColorTab.RGB: - { - if (SelectedBrushStop != null) - { - SelectedBrushStop.ConvertColorToRGB(); - } - return; - } - case ColorTab.CIELab: - { - if (SelectedBrushStop != null) - { - SelectedBrushStop.ConvertColorToLAB(); - } - return; - } - case ColorTab.CMYK: - { - - if (SelectedBrushStop != null) - { - SelectedBrushStop.ConvertColorToCMYK(); - } - return; - } - } - } - - #endregion - - #region Methods - - private double GetMaxCMYKValueOrDefault(LiquidTypes type) - { - if (SelectedBrushStop != null && SelectedBrushStop.SegmentModel != null && SelectedBrushStop.SegmentModel.Job != null && SelectedBrushStop.SegmentModel.Job.Rml != null) - { - var liquidTypesRml = SelectedBrushStop.SegmentModel.Job.Rml.LiquidTypesRmls.FirstOrDefault(x => x.LiquidType.Type == type); - if (liquidTypesRml != null) - { - //var test = liquidTypesRml.GetMaxCalibrationValue(); - - return liquidTypesRml.GetMaxCalibrationValue(); - } - - } - return 100; - } - - private void UpdateCMYKMaxValues() - { - RaisePropertyChanged(nameof(MaxCyanValue)); - RaisePropertyChanged(nameof(MaxMagentaValue)); - RaisePropertyChanged(nameof(MaxYellowValue)); - RaisePropertyChanged(nameof(MaxBlackValue)); - } - #endregion - } -} diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs index 52c961876..990f210f4 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs @@ -48,11 +48,11 @@ namespace Tango.PPC.Jobs.ViewModels /// Represents the selected job view model. /// /// - public class JobViewVM : PPCViewModel, INavigationObjectReceiver + public class JobViewVM : PPCViewModel, INavigationObjectReceiver, INavigationBlocker { private ObservablesContext _db; private bool _can_navigate_back; - private Thread _check_gamut_thread; + //private Thread _check_gamut_thread; private Job _job_to_load; private JobNavigationIntent _job_to_load_intent; private static Dictionary> _jobs_fine_tune_items; @@ -435,7 +435,7 @@ namespace Tango.PPC.Jobs.ViewModels // (e.Draggable as FrameworkElement).DataContext as Segment, // (e.Droppable as FrameworkElement).DataContext as Segment); //}); - + AddColorCommand = new RelayCommand(AddColor); EditColorCommand = new RelayCommand(EditColor); @@ -453,8 +453,8 @@ namespace Tango.PPC.Jobs.ViewModels } }); - _check_gamut_thread = new Thread(CheckGamutThreadMethod); - _check_gamut_thread.IsBackground = true; + //_check_gamut_thread = new Thread(CheckGamutThreadMethod); + //_check_gamut_thread.IsBackground = true; StartSampleDyeCommand = new RelayCommand(StartSampleDye, CanStartJob); DyeCommand = new RelayCommand(StartJob, CanStartJob); @@ -479,8 +479,8 @@ namespace Tango.PPC.Jobs.ViewModels RepeateSegmentCommand = new RelayCommand(RepeateSegment); PasteCommand = new RelayCommand(Paste); CopyCommand = new RelayCommand(Copy); - UndoCommand = new RelayCommand(Undo); - RedoCommand = new RelayCommand(Redo); + UndoCommand = new RelayCommand(Undo,(x)=> { return false; }); + RedoCommand = new RelayCommand(Redo, (x) => { return false; }); IsFullMode = true; } @@ -498,10 +498,9 @@ namespace Tango.PPC.Jobs.ViewModels { if (!(_job_to_load == null || (_job_to_load != null && Job != null && _job_to_load.Guid == Job.Guid))) { - View.ScrollToTop(); + //View.ScrollToTop(); LogManager.Log($"Loading selected job '{_job_to_load.Name}'..."); - //NotificationProvider.SetGlobalBusyMessage("Loading job details..."); IsFree = false; @@ -541,9 +540,7 @@ namespace Tango.PPC.Jobs.ViewModels .WithSegments() .WithBrushStops() .BuildAsync(); - - //Job.RmlChanged += OnRmlChanged; Job.NameChanged -= Job_NameChanged; Job.NameChanged += Job_NameChanged; @@ -568,15 +565,7 @@ namespace Tango.PPC.Jobs.ViewModels await LoadRML(_selectedRML); - if (!_check_gamut_thread.IsAlive) - { - _check_gamut_thread.Start(); - } - - // SegmentsCollectionView = CollectionViewSource.GetDefaultView(Job.Segments); - // SegmentsCollectionView.SortDescriptions.Add(new SortDescription(nameof(Segment.SegmentIndex), ListSortDirection.Ascending)); - - //ResetFineTuning(); + ///NEW CODE Save to MODEL var jobModel = new JobModel(ColorSpaces) { @@ -594,7 +583,7 @@ namespace Tango.PPC.Jobs.ViewModels foreach( var segm in Job.Segments) { - SegmentModel segmentModel = new SegmentModel(jobModel) + SegmentModel segmentModel = new SegmentModel(jobModel, segm.Guid) { Name = segm.Name, Length = segm.Length, @@ -607,6 +596,7 @@ namespace Tango.PPC.Jobs.ViewModels { BrushStopModel brushStopModel = new BrushStopModel(segmentModel) { + SegmentModel = segmentModel, Cyan = brushStop.Cyan, Magenta = brushStop.Magenta, Yellow = brushStop.Yellow, @@ -618,14 +608,16 @@ namespace Tango.PPC.Jobs.ViewModels A = brushStop.A, B = brushStop.B, OffsetPercent = brushStop.OffsetPercent, - IsTransparent = brushStop.IsTransparent, Color = brushStop.Color, DisplayedColor = brushStop.Color, ColorSpace = brushStop.ColorSpace.Space, - ColorCatalogsItem = brushStop.ColorCatalogsItem + ColorCatalogsItem = brushStop.ColorCatalogsItem, + StopIndex = brushStop.StopIndex }; - AddBrushStop(segmentModel, brushStopModel); + segmentModel.BrushStops.Add(brushStopModel); + // AddBrushStop(segmentModel, brushStopModel); } + ArrangeBrushStopsPosition(segmentModel); jobModel.Segments.Add(segmentModel); } JobModel = jobModel; @@ -691,7 +683,7 @@ namespace Tango.PPC.Jobs.ViewModels base.OnBeforeNavigatedFrom(); //Save... } - + /// /// Saves the job. /// @@ -801,43 +793,37 @@ namespace Tango.PPC.Jobs.ViewModels try { LogManager.Log("Editing the job details."); - JobCreationViewVM vm = new JobCreationViewVM( - _spoolTypes.ToList(), - _rmls.ToList() - ); + JobCreationViewVM vm = new JobCreationViewVM( _spoolTypes.ToList(),_rmls.ToList(), JobModel.InterSegmentLength, true ); vm.JobName = JobModel.Name; vm.SelectedRML = JobModel.Rml; vm.SelectedSpoolType = JobModel.SpoolType; vm = await NotificationProvider.ShowDialog(vm); if (!vm.DialogResult) return; - Job.Name = vm.JobName; - JobModel.Name = vm.JobName; - bool updateVolumes = JobModel.Rml != vm.SelectedRML; - JobModel. Rml = vm.SelectedRML; - SelectedRML = vm.SelectedRML; - JobModel.Rml = vm.SelectedRML; - Job.SpoolType = vm.SelectedSpoolType; - JobModel.SpoolType = vm.SelectedSpoolType; + if(vm.IsDuplicate) + { + //Duplicate new job + /* + * int index = Jobs.Max(x => x.JobIndex); + + List clonedJobs = new List(); - if(updateVolumes) + foreach (var job in SelectedJobs) { - NotificationProvider.SetGlobalBusyMessage("Updating job liquid volumes..."); - foreach (var stop in JobModel.Segments.SelectMany(x => x.BrushStops).Where(x => x.ColorSpace == BL.Enumerations.ColorSpaces.RGB || x.ColorSpace == BL.Enumerations.ColorSpaces.LAB).ToList()) - { - try - { - stop.OnBrushStopFieldValueChanged(); - //TODO ASK ROY!!!!!! - //output.ApplyOnBrushStopVolumesOnly(stop); - } - catch (Exception ex) - { - LogManager.Log(ex, $"Error updating stop volumes after changing thread on segment {stop.SegmentModel.SegmentIndex}, stop {stop.StopIndex}."); - } - } - NotificationProvider.ReleaseGlobalBusyMessage(); + var cloned = job.Clone(); + cloned.JobIndex = ++index; + _db.Jobs.Add(cloned); + clonedJobs.Add(cloned); } + + await _db.SaveChangesAsync(); + * */ + } + Job.Name = vm.JobName; + JobModel.Name = vm.JobName; + Job.SpoolType = vm.SelectedSpoolType; + JobModel.SpoolType = vm.SelectedSpoolType;//update length!!!! + SelectedRML = vm.SelectedRML; } catch (Exception ex) { @@ -845,9 +831,22 @@ namespace Tango.PPC.Jobs.ViewModels } } - private void RepeatUnits() + private async void RepeatUnits() { - //open dialog + var maxLength = Job.SpoolType.Length; + var maxRep = (maxLength == 0 ? 999 : (maxLength / JobModel.Length)); + + + var vm = await NotificationProvider.ShowDialog(new RepeatJobViewVM() + { + MaxRepeations = (int)maxRep, + Repeats = JobModel.NumberOfUnits + }); + + if (vm.DialogResult) + { + JobModel.NumberOfUnits = vm.Repeats; + } } #endregion @@ -865,7 +864,7 @@ namespace Tango.PPC.Jobs.ViewModels { if (Job.Rml != rml || rml.Cct == null) { - bool updateVolumes = Job.Rml != rml; + bool updateRML = Job.Rml != rml; Job.Rml = await new RmlBuilder(_db) .Set(rml.Guid) @@ -875,32 +874,50 @@ namespace Tango.PPC.Jobs.ViewModels .WithLiquidFactors() .WithSpools() .BuildAsync(); - - //foreach (var segment in Job.Segments) - //{ - // SetSegmentLiquidVolumes(segment); - //} - + if(JobModel != null) + JobModel.Rml = Job.Rml; + GetLubricationLevel(); await SetSpoolTension(rml); - if (updateVolumes) + if (updateRML && JobModel != null) { - NotificationProvider.SetGlobalBusyMessage("Updating job liquid volumes..."); - foreach (var stop in Job.Segments.SelectMany(x => x.BrushStops).Where(x => x.BrushColorSpace == BL.Enumerations.ColorSpaces.RGB || x.BrushColorSpace == BL.Enumerations.ColorSpaces.LAB).ToList()) + NotificationProvider.SetGlobalBusyMessage("Updating IsOutOfGammut due to the change RML..."); + foreach (var stop in JobModel.Segments.SelectMany(x => x.BrushStops).Where(x => x.ColorSpace == BL.Enumerations.ColorSpaces.RGB || x.ColorSpace == BL.Enumerations.ColorSpaces.LAB).ToList()) { try { - var output = await _converter.ConvertAsync(stop, false, false); - output.ApplyOnBrushStopVolumesOnly(stop); + stop.OnBrushStopFieldValueChanged(); + //TODO ASK ROY!!!!!! + //output.ApplyOnBrushStopVolumesOnly(stop); } catch (Exception ex) { - LogManager.Log(ex, $"Error updating stop volumes after changing thread on segment {stop.Segment.SegmentIndex}, stop {stop.StopIndex}."); + LogManager.Log(ex, $"Error updating stop volumes after changing thread on segment {stop.SegmentModel.SegmentIndex}, stop {stop.StopIndex}."); } } + DyeCommand.RaiseCanExecuteChanged(); + StartSampleDyeCommand.RaiseCanExecuteChanged(); + StartFineTuningCommand.RaiseCanExecuteChanged(); NotificationProvider.ReleaseGlobalBusyMessage(); } + //if (updateVolumes) + //{ + // NotificationProvider.SetGlobalBusyMessage("Updating job liquid volumes..."); + // foreach (var stop in Job.Segments.SelectMany(x => x.BrushStops).Where(x => x.BrushColorSpace == BL.Enumerations.ColorSpaces.RGB || x.BrushColorSpace == BL.Enumerations.ColorSpaces.LAB).ToList()) + // { + // try + // { + // var output = await _converter.ConvertAsync(stop, false, false); + // output.ApplyOnBrushStopVolumesOnly(stop); + // } + // catch (Exception ex) + // { + // LogManager.Log(ex, $"Error updating stop volumes after changing thread on segment {stop.Segment.SegmentIndex}, stop {stop.StopIndex}."); + // } + // } + // NotificationProvider.ReleaseGlobalBusyMessage(); + //} } } } @@ -1022,204 +1039,6 @@ namespace Tango.PPC.Jobs.ViewModels #region Brush Stops Management - //private void Stop_ColorCatalogChanged(object sender, ColorCatalog catalog) - //{ - // BrushStop stop = sender as BrushStop; - - // if (stop.ColorSpace != null && stop.BrushColorSpace == BL.Enumerations.ColorSpaces.Catalog) - // { - // if (stop.ColorCatalogsItem != null) - // { - // try - // { - // if (catalog != null && catalog.AllItemsOrdered.Count > 0) - // { - // stop.ColorCatalogsItem = catalog.GetClosestItem(stop.ColorCatalogsItem.Color); - // } - // else - // { - // stop.ColorCatalogsItem = null; - // } - // } - // catch (Exception ex) - // { - // LogManager.Log(ex, "Error getting closest catalog color."); - // stop.ColorCatalogsItem = null; - // } - // } - // } - //} - - - /// - /// Invokes the color adjustment for the specified brush stop. - /// - /// The brush stop. - private async void InvokeColorAdjustmentForBrushStop(BrushStop brushStop) - { - try - { - LogManager.Log($"Invoking triplet color adjustment dialog for brush stop {brushStop.StopIndex} at segment {brushStop.Segment.SegmentIndex}."); - - LogManager.Log("Retrieving color conversion suggestions for brush stop..."); - PMR.ColorLab.ConversionOutput conversionOutput = null; - - if (brushStop.IsOutOfGamut) - { - conversionOutput = _converter.Convert(brushStop, false); - } - - BasicColorCorrectionViewVM vm = null; - List suggestions = null; - - if (brushStop.IsOutOfGamut) - { - vm = await NotificationProvider.ShowDialog(new BasicColorCorrectionViewVM() - { - InvalidBrushStop = brushStop, - Suggestions = new List() { new ColorConversionSuggestion(conversionOutput.SingleCoordinates, 0, 0) }, - }); - } - - if (vm == null || vm.Result == BasicColorCorrectionViewVM.ColorCorrectionDialogResult.MoreOptions) - { - NotificationProvider.SetGlobalBusyMessage("Generating color hive..."); - - await Task.Factory.StartNew(() => - { - conversionOutput = _converter.Convert(brushStop, true); - - suggestions = conversionOutput.CreateHiveSuggestions(); - - if (vm == null) - { - var center = suggestions.GetCenterSuggestion(); - center.Coordinates.Red = brushStop.Red; - center.Coordinates.Green = brushStop.Green; - center.Coordinates.Blue = brushStop.Blue; - - center.Coordinates.L = brushStop.L; - center.Coordinates.A = brushStop.A; - center.Coordinates.B = brushStop.B; - } - }); - - NotificationProvider.ReleaseGlobalBusyMessage(); - LogManager.Log("Invoking hive color conversion dialog..."); - vm = await NotificationProvider.ShowDialog(new AdvancedColorCorrectionViewVM() - { - InvalidBrushStop = brushStop, - Suggestions = suggestions, - IsOutOfGamut = brushStop.IsOutOfGamut, - }); - } - - if (vm.Result == BasicColorCorrectionViewVM.ColorCorrectionDialogResult.Confirmed) - { - LogManager.Log($"Color suggestion selected: {vm.SelectedSuggestion.Color.ToString()}."); - - if (brushStop.BrushColorSpace == BL.Enumerations.ColorSpaces.RGB) - { - brushStop.Red = vm.SelectedSuggestion.Coordinates.Red; - brushStop.Green = vm.SelectedSuggestion.Coordinates.Green; - brushStop.Blue = vm.SelectedSuggestion.Coordinates.Blue; - } - else if (brushStop.BrushColorSpace == BL.Enumerations.ColorSpaces.LAB) - { - brushStop.L = vm.SelectedSuggestion.Coordinates.L; - brushStop.A = vm.SelectedSuggestion.Coordinates.A; - brushStop.B = vm.SelectedSuggestion.Coordinates.B; - } - else if (brushStop.BrushColorSpace == BL.Enumerations.ColorSpaces.Volume) - { - vm.SelectedSuggestion.ApplyOnBrushStop(brushStop); - } - - brushStop.Corrected = true; - brushStop.IsOutOfGamut = false; - brushStop.OutOfGamutChecked = true; - } - } - catch (Exception ex) - { - LogManager.Log(ex, "Error while invoking color adjustment dialog."); - await NotificationProvider.ShowError("An error occurred while trying to convert the selected color."); - } - finally - { - NotificationProvider.ReleaseGlobalBusyMessage(); - DyeCommand.RaiseCanExecuteChanged(); - } - } - - /// - /// Called when the brush stop field value has been changed (This called from the view!). - /// - /// The brush stop. - [HandleProcessCorruptedStateExceptions] - public void OnBrushStopFieldValueChanged(BrushStop stop) - { - if (stop != null && stop.ColorSpace != null) - { - if (stop.BrushColorSpace == BL.Enumerations.ColorSpaces.Catalog) - { - DyeCommand.RaiseCanExecuteChanged(); - return; - } - - _volumeConversionTimer.ResetReplace(() => - { - - try - { - var output = _converter.Convert(stop, false); - - if (stop.BrushColorSpace == BL.Enumerations.ColorSpaces.Volume) - { - stop.Red = output.SingleCoordinates.Red; - stop.Green = output.SingleCoordinates.Green; - stop.Blue = output.SingleCoordinates.Blue; - stop.L = output.SingleCoordinates.L; - stop.A = output.SingleCoordinates.A; - stop.B = output.SingleCoordinates.B; - stop.Corrected = false; - stop.OutOfGamutChecked = false; - } - else if (stop.BrushColorSpace == BL.Enumerations.ColorSpaces.LAB) - { - output.ApplyOnBrushStopVolumesOnly(stop); - stop.Corrected = false; - stop.OutOfGamutChecked = false; - } - else if (stop.BrushColorSpace == BL.Enumerations.ColorSpaces.RGB) - { - output.ApplyOnBrushStopVolumesOnly(stop); - stop.Corrected = false; - stop.OutOfGamutChecked = false; - } - - try - { - var closestItem = AvailableCatalogs.SelectMany(x => x.AllItemsOrdered).GetClosestItem(stop.Color); - stop.ColorCatalog = closestItem.ColorCatalogsGroup.ColorCatalog; - stop.ColorCatalogsItem = closestItem; - } - catch { } - } - catch (Exception ex) - { - LogManager.Log(ex, "An error occurred while trying to get volume => RGB from conversion engine."); - } - finally - { - InvokeUI(() => DyeCommand.RaiseCanExecuteChanged()); - } - - }); - - } - } - /// /// Opens the twine catalog for the specified brush stop. /// @@ -1244,12 +1063,23 @@ namespace Tango.PPC.Jobs.ViewModels // } //} - private void ArrangeBrushStopsIndices(Segment segment) + private void ArrangeBrushStopsIndexes(SegmentModel segment) { for (int i = 0; i < segment.BrushStops.Count; i++) { segment.BrushStops[i].StopIndex = i + 1; } + ArrangeBrushStopsPosition(segment); + } + + private void ArrangeBrushStopsPosition(SegmentModel segment) + { + if(segment.BrushStops.Count == 1) + { + segment.BrushStops.FirstOrDefault().Position = BrushStopModel.PositionStatus.FirstColor; + } + else if (segment.BrushStops.Count > 1) + segment.BrushStops.ToList().ForEach(x => x.Position = (BrushStopModel.PositionStatus)x.StopIndex); } private bool ValidateBrushStops() @@ -1269,15 +1099,21 @@ namespace Tango.PPC.Jobs.ViewModels await NotificationProvider.ShowInfo("Color transitions are best visible with segment length of 5 meters and above."); } - var newBrushStop = await NavigationManager.NavigateForResult( - new ColorSelectionNavigationObject() + var vm = await NotificationProvider.ShowDialog(new ColorSelectionViewVM() + { + DialogEditObject = new ColorSelectionViewVM.DialogObject() { SelectedSegment = segment, BrushStopForEdit = new BrushStopModel(segment), - IsEditingMode = false - }, true); - - AddBrushStop(segment, newBrushStop); + IsEditingMode = false, + } + }); + + if (vm.DialogResult) + { + AddBrushStop(segment, vm.SelectedBrushStop); + DyeCommand.RaiseCanExecuteChanged(); + } // SetSegmentLiquidVolumes(segment); //RegisterJobBrushStopsEvents(); } @@ -1289,18 +1125,22 @@ namespace Tango.PPC.Jobs.ViewModels { SegmentModel segment = brushStop.SegmentModel; LogManager.Log($"Edit brush stop."); - - var newBrushStop = await NavigationManager.NavigateForResult( - new ColorSelectionNavigationObject() + + var vm = await NotificationProvider.ShowDialog(new ColorSelectionViewVM() + { + DialogEditObject = new ColorSelectionViewVM.DialogObject() { SelectedSegment = segment, BrushStopForEdit = brushStop, - IsEditingMode = true - }, true); + IsEditingMode = true, + } + }); - if(newBrushStop != null) + + if (vm.DialogResult) { - segment.SetNewColor(brushStop,newBrushStop); + segment.SetNewColor(brushStop, vm.SelectedBrushStop); + DyeCommand.RaiseCanExecuteChanged(); } } @@ -1310,29 +1150,23 @@ namespace Tango.PPC.Jobs.ViewModels public async void AddBrushStop(SegmentModel segment, BrushStopModel newBrushStop) { if (newBrushStop == null || segment == null) - return; - - JobModel job = segment.Job; - + return; + Segment s = new Segment(); //SolidColor - if(segment.BrushStops.Count == 0) + if (segment.BrushStops.Count == 0) { - newBrushStop.IsFirstColorBrush = true; + newBrushStop.Position = BrushStopModel.PositionStatus.FirstColor; segment.BrushStops.Add(newBrushStop); } - //Add SecondColor + //Add Second BrushStop else if(segment.BrushStops.Count == 1)// add gradient { BrushStopModel currentBrushStop = segment.BrushStops[0]; segment.CreateGradientBrushes(segment.BrushStops[0], newBrushStop); segment.RaiseSegmentBrushChanged(); } - else + else //Create new Segment and Add BrushStop { - if (segment.BrushStops.Count < 5) - { - return; - } await NotificationProvider.ShowInfo("Please note that gradient segment is now split into two gradients."); SegmentModel newSegmentModel = segment.Clone(); @@ -1347,12 +1181,14 @@ namespace Tango.PPC.Jobs.ViewModels segment.AddOrReplaceSecondBrush(newBrushStop); segment.UpdateMiddleColorBrush(); segment.RaiseSegmentBrushChanged(); + ArrangeBrushStopsIndexes(segment); + ArrangeBrushStopsIndexes(newSegmentModel); - if(job.Segments.Count == segment.SegmentIndex) - job.Segments.Add(newSegmentModel); + if (JobModel.Segments.Count == segment.SegmentIndex) + JobModel.Segments.Add(newSegmentModel); else { - job.Segments.Insert(segment.SegmentIndex, newSegmentModel); + JobModel.Segments.Insert(segment.SegmentIndex, newSegmentModel); } ArrangeSegmentsIndixes(); } @@ -1596,51 +1432,7 @@ namespace Tango.PPC.Jobs.ViewModels #region Out Of Gamut Check Thread - /// - /// Iterates over all brush stops and checks for out of gamut. - /// - [HandleProcessCorruptedStateExceptions] - private void CheckGamutThreadMethod() - { - while (true) - { - Thread.Sleep(500); - - if (Job != null && Job.Rml.Cct != null && IsVisible) - { - var brushStops = Job.Segments.SelectMany(x => x.BrushStops).Where(x => x.ColorSpace != null).Where(x => (x.BrushColorSpace == BL.Enumerations.ColorSpaces.LAB || x.BrushColorSpace == BL.Enumerations.ColorSpaces.RGB) && !x.Corrected && !x.OutOfGamutChecked).ToList(); - - foreach (var stop in brushStops) - { - try - { - stop.IsOutOfGamut = _converter.IsOutOfGamut(stop); - stop.OutOfGamutChecked = true; - } - catch (AccessViolationException) - { - LogManager.Log($"Out of gamut check failed for brush stop {stop.StopIndex} at segment {stop.Segment.SegmentIndex}.", LogCategory.Warning); - continue; - } - catch - { - LogManager.Log($"Out of gamut check failed for brush stop {stop.StopIndex} at segment {stop.Segment.SegmentIndex}.", LogCategory.Warning); - } - } - - if (brushStops.Count > 0) - { - InvokeUI(() => - { - DyeCommand.RaiseCanExecuteChanged(); - StartSampleDyeCommand.RaiseCanExecuteChanged(); - StartFineTuningCommand.RaiseCanExecuteChanged(); - }); - } - } - } - } - + #endregion #region Lubrication Level @@ -1755,6 +1547,11 @@ namespace Tango.PPC.Jobs.ViewModels _job_to_load_intent = JobNavigationIntent.Default; } + public override void OnNavigatedTo(PPCViewModel fromVM) + { + base.OnNavigatedTo(fromVM); + } + /// /// Called before the navigation system navigates back from this object. /// Return false to abort the navigation. @@ -1762,40 +1559,17 @@ namespace Tango.PPC.Jobs.ViewModels /// public async override Task OnNavigateBackRequest() { - bool result = true; - - if (!IsFree) return false; - - if (!_can_navigate_back) + try { - bool jobChainged = false; - - if (Job != null) - { - string job_string = Job.ToJobFileWhenLoaded().ToString(); - jobChainged = job_string != _current_job_string; - } - - if (jobChainged) - { - if (await NotificationProvider.ShowQuestion("Are you sure you want to exit this job without saving changes?")) - { - Job = null; - SegmentsCollectionView = null; - } - else - { - result = false; - } - } - else - { - Job = null; - SegmentsCollectionView = null; - } + await Save(); + return true; + } + catch (Exception ex) + { + LogManager.Log(ex, "Error saving job to database."); + await NotificationProvider.ShowError("Error saving the current job."); + return false; } - - return result; } public override void OnApplicationReady() @@ -1832,16 +1606,21 @@ namespace Tango.PPC.Jobs.ViewModels { if (false == JobModel.Segments.ToList().Any(x => x.IsSelected)) return; - var firstIndex = JobModel.Segments.ToList().FindIndex(i => i.IsSelected == true); - var lastIndex = JobModel.Segments.ToList().FindLastIndex(i => i.IsSelected == true); - if(firstIndex < lastIndex) - { - //TODO function! - //var copy = JobModel.Segments.ToList(); - //copy.Reverse(firstIndex, (lastIndex - firstIndex + 1)); - //JobModel.Segments = new SynchronizedObservableCollection(copy); - //ArrangeSegmentsIndixes(); + + for (int firstIndex = 0, lastIndex = JobModel.Segments.Count - 1; firstIndex < lastIndex; firstIndex++) + { + if (JobModel.Segments[firstIndex].IsSelected) + { + for (; lastIndex >= 0; lastIndex--) + { + if (JobModel.Segments[lastIndex].IsSelected) + { + JobModel.SwapSegments(firstIndex, lastIndex); + } + } + } } + ArrangeSegmentsIndixes(); } private async void DeleteSegment() @@ -1902,5 +1681,80 @@ namespace Tango.PPC.Jobs.ViewModels } #endregion + + private async Task Save() + { + if (JobModel == null) + return; + var colorSpaces = await _db.ColorSpaces.ToListAsync(); + + Job.ColorSpace = colorSpaces.FirstOrDefault(); + + var oldSegments = Job.Segments.ToList(); + + foreach (var segment in Job.Segments.ToList()) + { + foreach (var stop in segment.BrushStops.ToList()) + { + _db.BrushStops.Remove(stop); + } + + _db.Segments.Remove(segment); + } + + Job.Segments.Clear(); + + foreach (var segment in JobModel.Segments.OrderBy(x => x.SegmentIndex).ToList()) + { + var dbSegment = new Segment(); + dbSegment.Name = "Standard Segment"; + + dbSegment.Job = Job; + dbSegment.SegmentIndex = segment.SegmentIndex; + dbSegment.Length = segment.Length; + + _db.Segments.Add(dbSegment); + + foreach (var stop in segment.BrushStops.OrderBy(x => x.StopIndex).ToList()) + { + var dbStop = new BrushStop(); + dbStop.Segment = dbSegment; + _db.BrushStops.Add(dbStop); + + dbStop.ColorSpace = colorSpaces.FirstOrDefault(x => x.Code == (int)stop.ColorSpace); + dbStop.Red = stop.Red; + dbStop.Green = stop.Green; + dbStop.Blue = stop.Blue; + dbStop.L = stop.L; + dbStop.A = stop.A; + dbStop.B = stop.B; + dbStop.Cyan = stop.Cyan; + dbStop.Magenta = stop.Magenta; + dbStop.Yellow = stop.Yellow; + dbStop.Black = stop.Black; + dbStop.BestMatchR = stop.DisplayedColor.R; + dbStop.BestMatchG = stop.DisplayedColor.G; + dbStop.BestMatchB = stop.DisplayedColor.B; + + dbStop.OffsetPercent = stop.OffsetPercent; + dbStop.StopIndex = stop.StopIndex; + dbStop.IsOutOfGamut = stop.IsOutOfGamut; + + + dbStop.SetVolume(LiquidTypes.Cyan, stop.Cyan); + dbStop.SetVolume(LiquidTypes.Magenta, stop.Magenta); + dbStop.SetVolume(LiquidTypes.Yellow, stop.Yellow); + dbStop.SetVolume(LiquidTypes.Black, stop.Black); + } + } + Job.LastUpdated = DateTime.UtcNow; + Job.IsSynchronized = false; + Job.JobStatus = BL.Enumerations.JobStatuses.Draft; + //_current_job_string = Job.ToJobFileWhenLoaded().ToString(); + RaiseMessage(new JobSavedMessage() { Job = Job }); + + await _db.SaveChangesAsync(); + + } } } diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobsViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobsViewVM.cs index 0a1ce7df7..1f7042b57 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobsViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobsViewVM.cs @@ -422,10 +422,7 @@ namespace Tango.PPC.Jobs.ViewModels { await Task.Delay(200); } - JobCreationViewVM vm = new JobCreationViewVM( - _spoolTypes.ToList(), - _rmls.ToList() - ); + JobCreationViewVM vm = new JobCreationViewVM( _spoolTypes.ToList(), _rmls.ToList(), 3, false ); string selectedRmlGuid = (Settings.DefaultRmlGuid != null && _rmls.Select(x => x.Guid).Contains(Settings.DefaultRmlGuid)) ? Settings.DefaultRmlGuid : _rmls.FirstOrDefault().Guid; string selectedSpoolTypeGuid = Settings.DefaultSpoolTypeGuid != null ? Settings.DefaultSpoolTypeGuid : Adapter.SpoolTypes.FirstOrDefault().Guid; ; diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/ColorSelectionToolView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/ColorSelectionToolView.xaml deleted file mode 100644 index 9d48df2fb..000000000 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/ColorSelectionToolView.xaml +++ /dev/null @@ -1,324 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - My Colors - - - - - - - - - - - - - - Job Palette - - - - - - - - - - - - - - - - - - - - - - - - Color Selection Tool - - - - - - - - - HSB - CIELab - RGB - CMYK - Catalogs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/ColorSelectionToolView.xaml.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/ColorSelectionToolView.xaml.cs deleted file mode 100644 index dea4c2d61..000000000 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/ColorSelectionToolView.xaml.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Imaging; -using System.Windows.Navigation; -using System.Windows.Shapes; -using Tango.PPC.Jobs.Converters; -using Tango.PPC.Jobs.ViewModels; -using Tango.Touch.Controls; -using static Tango.SharedUI.Controls.NavigationControl; -using static Tango.PPC.Jobs.ViewModels.ColorSelectionToolViewVM; - -namespace Tango.PPC.Jobs.Views -{ - /// - /// Interaction logic for ColorSelectionToolView.xaml - /// - public partial class ColorSelectionToolView : UserControl - { - private ColorSelectionToolViewVM _vm; - public ColorSelectionToolView() - { - InitializeComponent(); - - Loaded += (_, __) => - { - _vm = DataContext as ColorSelectionToolViewVM; - }; - - } - - - - private void TouchNavigationLinks_SelectionChanged(object sender, SelectionChangedEventArgs e) - { - - } - - private void TouchNavigationLinks_OnPreviewMouseDown(object sender, MouseButtonEventArgs e) - { - if (_vm != null && _vm.SelectedBrushStop != null && true == _vm.SelectedBrushStop.IsCMYKLiquidVolumesOutOfRange) - { - var item = ItemsControl.ContainerFromElement(sender as ListBox, e.OriginalSource as DependencyObject) as ListBoxItem; - if (item != null) - { - e.Handled = true; - } - } - } - - - } -} diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/JobView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/JobView.xaml index 982c534b9..65a880f4e 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/JobView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/JobView.xaml @@ -145,7 +145,7 @@ - + @@ -241,7 +241,7 @@ - + @@ -269,7 +269,7 @@ - + @@ -406,10 +406,8 @@ - - - - + + @@ -419,24 +417,29 @@ - + - + - - - - - - + + + + + + + + + + + - - - + + + @@ -559,11 +562,14 @@ - + - + @@ -575,7 +581,7 @@ - + - - - + + + - + Repeat Job @@ -603,21 +609,28 @@ - - + + + + + + + + - + - - + + - - + + + @@ -642,14 +655,12 @@ % - - - - - + + + diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/JobView.xaml.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/JobView.xaml.cs index 77c30bb30..66c497e29 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/JobView.xaml.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/JobView.xaml.cs @@ -28,7 +28,7 @@ namespace Tango.PPC.Jobs.Views public partial class JobView : UserControl, INavigationView, IJobView { private JobViewVM _vm; - private bool _is_edit_docked; + public JobView() { @@ -47,10 +47,10 @@ namespace Tango.PPC.Jobs.Views } - private void OnBrushStopFieldValueChanged(object sender, Touch.Controls.DoubleValueChangedEventArgs e) - { - _vm.OnBrushStopFieldValueChanged((sender as FrameworkElement).DataContext as BrushStop); - } + //private void OnBrushStopFieldValueChanged(object sender, Touch.Controls.DoubleValueChangedEventArgs e) + //{ + // _vm.OnBrushStopFieldValueChanged((sender as FrameworkElement).DataContext as BrushStop); + //} public void DisplaySampleDye() { @@ -116,18 +116,23 @@ namespace Tango.PPC.Jobs.Views // borderEditDock.Visibility = Visibility.Collapsed; //} - private void OnLiquidVolumeFieldValueChanged(object sender, Touch.Controls.DoubleValueChangedEventArgs e) - { - var liquidVolume = (sender as FrameworkElement).DataContext as LiquidVolume; + //private void OnLiquidVolumeFieldValueChanged(object sender, Touch.Controls.DoubleValueChangedEventArgs e) + //{ + // var liquidVolume = (sender as FrameworkElement).DataContext as LiquidVolume; - if (liquidVolume != null) - { - _vm.OnBrushStopFieldValueChanged(liquidVolume.BrushStop); - } - } + // if (liquidVolume != null) + // { + // _vm.OnBrushStopFieldValueChanged(liquidVolume.BrushStop); + // } + //} public void ScrollToTop() { + if(listSegments.IsVisible && listSegments.Items.Count > 0) + { + listSegments.ScrollIntoView(listSegments.Items[0]); + + } //FloatEditing(); //scrollViewer.ScrollToTop(); } diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/MainView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/MainView.xaml index 77d2d200d..505ccc312 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/MainView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Views/MainView.xaml @@ -17,7 +17,6 @@ - diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Merged.xaml b/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Merged.xaml index c33e90e76..bb0a694cf 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Merged.xaml +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Merged.xaml @@ -17,6 +17,10 @@ + + + + diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Styles.xaml b/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Styles.xaml index 593adc3f5..e7a6cd6c3 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Styles.xaml +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Resources/Styles.xaml @@ -49,16 +49,14 @@ - + - - + + + /// best match r + /// + public Nullable BestMatchR + { + get; set; + } + + /// + /// best match g + /// + public Nullable BestMatchG + { + get; set; + } + + /// + /// best match b + /// + public Nullable BestMatchB + { + 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/Entities/BrushStop.cs b/Software/Visual_Studio/Tango.BL/Entities/BrushStop.cs index adc7629b1..2081e7c14 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/BrushStop.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/BrushStop.cs @@ -185,12 +185,12 @@ namespace Tango.BL.Entities } else { - return Color.FromRgb((byte)_red, (byte)_green, (byte)_blue); + return Color.FromRgb((byte)_bestmatchr, (byte)_bestmatchg, (byte)_bestmatchb); } } else { - return Color.FromRgb((byte)_red, (byte)_green, (byte)_blue); + return Color.FromRgb((byte)_bestmatchr, (byte)_bestmatchg, (byte)_bestmatchb); } } set diff --git a/Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs b/Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs index aa602bc77..23cb993be 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs @@ -95,6 +95,12 @@ namespace Tango.BL.Entities public event EventHandler IsTransparentChanged; + public event EventHandler> BestMatchRChanged; + + public event EventHandler> BestMatchGChanged; + + public event EventHandler> BestMatchBChanged; + public event EventHandler ColorCatalogChanged; public event EventHandler ColorCatalogsItemChanged; @@ -1125,6 +1131,87 @@ namespace Tango.BL.Entities } } + protected Nullable _bestmatchr; + + /// + /// Gets or sets the brushstopbase best match r. + /// + + [Column("BEST_MATCH_R")] + + public Nullable BestMatchR + { + get + { + return _bestmatchr; + } + + set + { + if (_bestmatchr != value) + { + _bestmatchr = value; + + OnBestMatchRChanged(value); + + } + } + } + + protected Nullable _bestmatchg; + + /// + /// Gets or sets the brushstopbase best match g. + /// + + [Column("BEST_MATCH_G")] + + public Nullable BestMatchG + { + get + { + return _bestmatchg; + } + + set + { + if (_bestmatchg != value) + { + _bestmatchg = value; + + OnBestMatchGChanged(value); + + } + } + } + + protected Nullable _bestmatchb; + + /// + /// Gets or sets the brushstopbase best match b. + /// + + [Column("BEST_MATCH_B")] + + public Nullable BestMatchB + { + get + { + return _bestmatchb; + } + + set + { + if (_bestmatchb != value) + { + _bestmatchb = value; + + OnBestMatchBChanged(value); + + } + } + } + protected ColorCatalog _colorcatalog; /// @@ -1559,6 +1646,33 @@ namespace Tango.BL.Entities RaisePropertyChanged(nameof(IsTransparent)); } + /// + /// Called when the BestMatchR has changed. + /// + protected virtual void OnBestMatchRChanged(Nullable bestmatchr) + { + BestMatchRChanged?.Invoke(this, bestmatchr); + RaisePropertyChanged(nameof(BestMatchR)); + } + + /// + /// Called when the BestMatchG has changed. + /// + protected virtual void OnBestMatchGChanged(Nullable bestmatchg) + { + BestMatchGChanged?.Invoke(this, bestmatchg); + RaisePropertyChanged(nameof(BestMatchG)); + } + + /// + /// Called when the BestMatchB has changed. + /// + protected virtual void OnBestMatchBChanged(Nullable bestmatchb) + { + BestMatchBChanged?.Invoke(this, bestmatchb); + RaisePropertyChanged(nameof(BestMatchB)); + } + /// /// Called when the ColorCatalog has changed. /// 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/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/ColorSpaces.cs b/Software/Visual_Studio/Tango.BL/Enumerations/ColorSpaces.cs index 1f1df04db..63970e879 100644 --- a/Software/Visual_Studio/Tango.BL/Enumerations/ColorSpaces.cs +++ b/Software/Visual_Studio/Tango.BL/Enumerations/ColorSpaces.cs @@ -49,9 +49,8 @@ namespace Tango.BL.Enumerations [Description("Catalog")] Catalog = 4, - /// - /// (Catalog) + /// (HSB) /// [Description("HSB")] HSB = 5, 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/MediaMaterials.cs b/Software/Visual_Studio/Tango.BL/Enumerations/MediaMaterials.cs index 8ad228267..c16bdc8ab 100644 --- a/Software/Visual_Studio/Tango.BL/Enumerations/MediaMaterials.cs +++ b/Software/Visual_Studio/Tango.BL/Enumerations/MediaMaterials.cs @@ -23,7 +23,7 @@ namespace Tango.BL.Enumerations /// (PET-CATIONIC) /// [Description("PET-CATIONIC")] - PETCATIONIC = 4, + PET_CATIONIC = 4, /// /// (LYCRA) @@ -35,7 +35,7 @@ namespace Tango.BL.Enumerations /// (PES-LYCRA) /// [Description("PES-LYCRA")] - PESLYCRA = 8, + PES_LYCRA = 8, /// /// (PE) @@ -59,7 +59,7 @@ namespace Tango.BL.Enumerations /// (CO-PET) /// [Description("CO-PET")] - COPET = 6, + CO_PET = 6, /// /// (PTT) @@ -71,7 +71,7 @@ namespace Tango.BL.Enumerations /// (PA 6.6) /// [Description("PA 6.6")] - PA66 = 3, + PA_66 = 3, } } 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..bd6d7e495 100644 --- a/Software/Visual_Studio/Tango.BL/Enumerations/Rmls.cs +++ b/Software/Visual_Studio/Tango.BL/Enumerations/Rmls.cs @@ -37,6 +37,18 @@ namespace Tango.BL.Enumerations [Description("RML 2")] RML2 = 0, + /// + /// (vica_test) + /// + [Description("vica_test")] + vica_test = 3, + + /// + /// (Epic24_Gen2) + /// + [Description("Epic24_Gen2")] + Epic24_Gen2 = 4, + /// /// (RML 1) /// diff --git a/Software/Visual_Studio/Tango.BL/ObservablesContext.cs b/Software/Visual_Studio/Tango.BL/ObservablesContext.cs index d6bc73bd0..26d3d6f8b 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. /// @@ -158,30 +302,6 @@ 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 ColorSpaces. /// @@ -582,14 +702,6 @@ namespace Tango.BL get; set; } - /// - /// Gets or sets the RmlExtensionTestResults. - /// - public DbSet RmlExtensionTestResults - { - get; set; - } - /// /// Gets or sets the Rmls. /// @@ -598,14 +710,6 @@ namespace Tango.BL get; set; } - /// - /// Gets or sets the RmlsExtensions. - /// - public DbSet RmlsExtensions - { - get; set; - } - /// /// Gets or sets the RmlsSpools. /// @@ -630,14 +734,6 @@ namespace Tango.BL get; set; } - /// - /// Gets or sets the RubbingResults. - /// - public DbSet RubbingResults - { - get; set; - } - /// /// Gets or sets the Segments. /// @@ -758,14 +854,6 @@ namespace Tango.BL get; set; } - /// - /// Gets or sets the TensileResults. - /// - public DbSet TensileResults - { - get; set; - } - /// /// Gets or sets the Users. /// @@ -790,93 +878,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..973275408 100644 --- a/Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs +++ b/Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs @@ -53,3818 +53,3818 @@ 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 _colorspacesViewSource; + private ICollectionView _addressesViewSource; /// - /// Gets or sets the ColorSpaces View Source. + /// Gets or sets the Addresses View Source. /// - public ICollectionView ColorSpacesViewSource + public ICollectionView AddressesViewSource { get { - return _colorspacesViewSource; + return _addressesViewSource; } set { - _colorspacesViewSource = value; RaisePropertyChanged(nameof(ColorSpacesViewSource)); + _addressesViewSource = value; RaisePropertyChanged(nameof(AddressesViewSource)); } } - private ObservableCollection _configurations; + private ObservableCollection _applicationdisplaypanelversions; /// - /// Gets or sets the Configurations. + /// Gets or sets the ApplicationDisplayPanelVersions. /// - public ObservableCollection Configurations + public ObservableCollection ApplicationDisplayPanelVersions { get { - return _configurations; + return _applicationdisplaypanelversions; } set { - _configurations = value; RaisePropertyChanged(nameof(Configurations)); + _applicationdisplaypanelversions = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersions)); } } - private ICollectionView _configurationsViewSource; + private ICollectionView _applicationdisplaypanelversionsViewSource; /// - /// Gets or sets the Configurations View Source. + /// Gets or sets the ApplicationDisplayPanelVersions View Source. /// - public ICollectionView ConfigurationsViewSource + public ICollectionView ApplicationDisplayPanelVersionsViewSource { get { - return _configurationsViewSource; + return _applicationdisplaypanelversionsViewSource; } set { - _configurationsViewSource = value; RaisePropertyChanged(nameof(ConfigurationsViewSource)); + _applicationdisplaypanelversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersionsViewSource)); } } - private ObservableCollection _contacts; + private ObservableCollection _applicationfirmwareversions; /// - /// Gets or sets the Contacts. + /// Gets or sets the ApplicationFirmwareVersions. /// - public ObservableCollection Contacts + public ObservableCollection ApplicationFirmwareVersions { get { - return _contacts; + return _applicationfirmwareversions; } set { - _contacts = value; RaisePropertyChanged(nameof(Contacts)); + _applicationfirmwareversions = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersions)); } } - private ICollectionView _contactsViewSource; + private ICollectionView _applicationfirmwareversionsViewSource; /// - /// Gets or sets the Contacts View Source. + /// Gets or sets the ApplicationFirmwareVersions View Source. /// - public ICollectionView ContactsViewSource + public ICollectionView ApplicationFirmwareVersionsViewSource { get { - return _contactsViewSource; + return _applicationfirmwareversionsViewSource; } set { - _contactsViewSource = value; RaisePropertyChanged(nameof(ContactsViewSource)); + _applicationfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersionsViewSource)); } } - private ObservableCollection _customers; + private ObservableCollection _applicationosversions; /// - /// Gets or sets the Customers. + /// Gets or sets the ApplicationOsVersions. /// - public ObservableCollection Customers + public ObservableCollection ApplicationOsVersions { get { - return _customers; + return _applicationosversions; } set { - _customers = value; RaisePropertyChanged(nameof(Customers)); + _applicationosversions = value; RaisePropertyChanged(nameof(ApplicationOsVersions)); } } - private ICollectionView _customersViewSource; + private ICollectionView _applicationosversionsViewSource; /// - /// Gets or sets the Customers View Source. + /// Gets or sets the ApplicationOsVersions View Source. /// - public ICollectionView CustomersViewSource + public ICollectionView ApplicationOsVersionsViewSource { get { - return _customersViewSource; + return _applicationosversionsViewSource; } set { - _customersViewSource = value; RaisePropertyChanged(nameof(CustomersViewSource)); + _applicationosversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationOsVersionsViewSource)); } } - private ObservableCollection _datastoreitems; + private ObservableCollection _bittypes; /// - /// Gets or sets the DataStoreItems. + /// Gets or sets the BitTypes. /// - public ObservableCollection DataStoreItems + public ObservableCollection BitTypes { get { - return _datastoreitems; + return _bittypes; } set { - _datastoreitems = value; RaisePropertyChanged(nameof(DataStoreItems)); + _bittypes = value; RaisePropertyChanged(nameof(BitTypes)); } } - private ICollectionView _datastoreitemsViewSource; + private ICollectionView _bittypesViewSource; /// - /// Gets or sets the DataStoreItems View Source. + /// Gets or sets the BitTypes View Source. /// - public ICollectionView DataStoreItemsViewSource + public ICollectionView BitTypesViewSource { get { - return _datastoreitemsViewSource; + return _bittypesViewSource; } set { - _datastoreitemsViewSource = value; RaisePropertyChanged(nameof(DataStoreItemsViewSource)); + _bittypesViewSource = value; RaisePropertyChanged(nameof(BitTypesViewSource)); } } - private ObservableCollection _dispensertypes; + private ObservableCollection _brushstops; /// - /// Gets or sets the DispenserTypes. + /// Gets or sets the BrushStops. /// - public ObservableCollection DispenserTypes + public ObservableCollection BrushStops { get { - return _dispensertypes; + return _brushstops; } set { - _dispensertypes = value; RaisePropertyChanged(nameof(DispenserTypes)); + _brushstops = value; RaisePropertyChanged(nameof(BrushStops)); } } - private ICollectionView _dispensertypesViewSource; + private ICollectionView _brushstopsViewSource; /// - /// Gets or sets the DispenserTypes View Source. + /// Gets or sets the BrushStops View Source. /// - public ICollectionView DispenserTypesViewSource + public ICollectionView BrushStopsViewSource { get { - return _dispensertypesViewSource; + return _brushstopsViewSource; } set { - _dispensertypesViewSource = value; RaisePropertyChanged(nameof(DispenserTypesViewSource)); + _brushstopsViewSource = value; RaisePropertyChanged(nameof(BrushStopsViewSource)); } } - private ObservableCollection _dispensers; + private ObservableCollection _btsrapplicationtypes; /// - /// Gets or sets the Dispensers. + /// Gets or sets the BtsrApplicationTypes. /// - public ObservableCollection Dispensers + public ObservableCollection BtsrApplicationTypes { get { - return _dispensers; + return _btsrapplicationtypes; } set { - _dispensers = value; RaisePropertyChanged(nameof(Dispensers)); + _btsrapplicationtypes = value; RaisePropertyChanged(nameof(BtsrApplicationTypes)); } } - private ICollectionView _dispensersViewSource; + private ICollectionView _btsrapplicationtypesViewSource; /// - /// Gets or sets the Dispensers View Source. + /// Gets or sets the BtsrApplicationTypes View Source. /// - public ICollectionView DispensersViewSource + public ICollectionView BtsrApplicationTypesViewSource { get { - return _dispensersViewSource; + return _btsrapplicationtypesViewSource; } set { - _dispensersViewSource = value; RaisePropertyChanged(nameof(DispensersViewSource)); + _btsrapplicationtypesViewSource = value; RaisePropertyChanged(nameof(BtsrApplicationTypesViewSource)); } } - private ObservableCollection _embeddedfirmwareversions; + private ObservableCollection _btsryarntypes; /// - /// Gets or sets the EmbeddedFirmwareVersions. + /// Gets or sets the BtsrYarnTypes. /// - public ObservableCollection EmbeddedFirmwareVersions + public ObservableCollection BtsrYarnTypes { get { - return _embeddedfirmwareversions; + return _btsryarntypes; } set { - _embeddedfirmwareversions = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersions)); + _btsryarntypes = value; RaisePropertyChanged(nameof(BtsrYarnTypes)); } } - private ICollectionView _embeddedfirmwareversionsViewSource; + private ICollectionView _btsryarntypesViewSource; /// - /// Gets or sets the EmbeddedFirmwareVersions View Source. + /// Gets or sets the BtsrYarnTypes View Source. /// - public ICollectionView EmbeddedFirmwareVersionsViewSource + public ICollectionView BtsrYarnTypesViewSource { get { - return _embeddedfirmwareversionsViewSource; + return _btsryarntypesViewSource; } set { - _embeddedfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersionsViewSource)); + _btsryarntypesViewSource = value; RaisePropertyChanged(nameof(BtsrYarnTypesViewSource)); } } - private ObservableCollection _eventtypes; + private ObservableCollection _cartridgetypes; /// - /// Gets or sets the EventTypes. + /// Gets or sets the CartridgeTypes. /// - public ObservableCollection EventTypes + public ObservableCollection CartridgeTypes { get { - return _eventtypes; + return _cartridgetypes; } set { - _eventtypes = value; RaisePropertyChanged(nameof(EventTypes)); + _cartridgetypes = value; RaisePropertyChanged(nameof(CartridgeTypes)); } } - private ICollectionView _eventtypesViewSource; + private ICollectionView _cartridgetypesViewSource; /// - /// Gets or sets the EventTypes View Source. + /// Gets or sets the CartridgeTypes View Source. /// - public ICollectionView EventTypesViewSource + public ICollectionView CartridgeTypesViewSource { get { - return _eventtypesViewSource; + return _cartridgetypesViewSource; } set { - _eventtypesViewSource = value; RaisePropertyChanged(nameof(EventTypesViewSource)); + _cartridgetypesViewSource = value; RaisePropertyChanged(nameof(CartridgeTypesViewSource)); } } - private ObservableCollection _fibershapes; + private ObservableCollection _cats; /// - /// Gets or sets the FiberShapes. + /// Gets or sets the Cats. /// - public ObservableCollection FiberShapes + public ObservableCollection Cats { get { - return _fibershapes; + return _cats; } set { - _fibershapes = value; RaisePropertyChanged(nameof(FiberShapes)); + _cats = value; RaisePropertyChanged(nameof(Cats)); } } - private ICollectionView _fibershapesViewSource; + private ICollectionView _catsViewSource; /// - /// Gets or sets the FiberShapes View Source. + /// Gets or sets the Cats View Source. /// - public ICollectionView FiberShapesViewSource + public ICollectionView CatsViewSource { get { - return _fibershapesViewSource; + return _catsViewSource; } set { - _fibershapesViewSource = value; RaisePropertyChanged(nameof(FiberShapesViewSource)); + _catsViewSource = value; RaisePropertyChanged(nameof(CatsViewSource)); } } - private ObservableCollection _fibersynths; + private ObservableCollection _ccts; /// - /// Gets or sets the FiberSynths. + /// Gets or sets the Ccts. /// - public ObservableCollection FiberSynths + public ObservableCollection Ccts { get { - return _fibersynths; + return _ccts; } set { - _fibersynths = value; RaisePropertyChanged(nameof(FiberSynths)); + _ccts = value; RaisePropertyChanged(nameof(Ccts)); } } - private ICollectionView _fibersynthsViewSource; + private ICollectionView _cctsViewSource; /// - /// Gets or sets the FiberSynths View Source. + /// Gets or sets the Ccts View Source. /// - public ICollectionView FiberSynthsViewSource + public ICollectionView CctsViewSource { get { - return _fibersynthsViewSource; + return _cctsViewSource; } set { - _fibersynthsViewSource = value; RaisePropertyChanged(nameof(FiberSynthsViewSource)); + _cctsViewSource = value; RaisePropertyChanged(nameof(CctsViewSource)); } } - private ObservableCollection _fseversions; + private ObservableCollection _colorcatalogs; /// - /// Gets or sets the FseVersions. + /// Gets or sets the ColorCatalogs. /// - public ObservableCollection FseVersions + public ObservableCollection ColorCatalogs { get { - return _fseversions; + return _colorcatalogs; } set { - _fseversions = value; RaisePropertyChanged(nameof(FseVersions)); + _colorcatalogs = value; RaisePropertyChanged(nameof(ColorCatalogs)); } } - private ICollectionView _fseversionsViewSource; + private ICollectionView _colorcatalogsViewSource; /// - /// Gets or sets the FseVersions View Source. + /// Gets or sets the ColorCatalogs View Source. /// - public ICollectionView FseVersionsViewSource + public ICollectionView ColorCatalogsViewSource { get { - return _fseversionsViewSource; + return _colorcatalogsViewSource; } set { - _fseversionsViewSource = value; RaisePropertyChanged(nameof(FseVersionsViewSource)); + _colorcatalogsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsViewSource)); } } - private ObservableCollection _globaldatastoreitems; + private ObservableCollection _colorcatalogsgroups; /// - /// Gets or sets the GlobalDataStoreItems. + /// Gets or sets the ColorCatalogsGroups. /// - public ObservableCollection GlobalDataStoreItems + public ObservableCollection ColorCatalogsGroups { get { - return _globaldatastoreitems; + return _colorcatalogsgroups; } set { - _globaldatastoreitems = value; RaisePropertyChanged(nameof(GlobalDataStoreItems)); + _colorcatalogsgroups = value; RaisePropertyChanged(nameof(ColorCatalogsGroups)); } } - private ICollectionView _globaldatastoreitemsViewSource; + private ICollectionView _colorcatalogsgroupsViewSource; /// - /// Gets or sets the GlobalDataStoreItems View Source. + /// Gets or sets the ColorCatalogsGroups View Source. /// - public ICollectionView GlobalDataStoreItemsViewSource + public ICollectionView ColorCatalogsGroupsViewSource { get { - return _globaldatastoreitemsViewSource; + return _colorcatalogsgroupsViewSource; } set { - _globaldatastoreitemsViewSource = value; RaisePropertyChanged(nameof(GlobalDataStoreItemsViewSource)); + _colorcatalogsgroupsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsGroupsViewSource)); } } - private ObservableCollection _hardwareblowertypes; + private ObservableCollection _colorcatalogsitems; /// - /// Gets or sets the HardwareBlowerTypes. + /// Gets or sets the ColorCatalogsItems. /// - public ObservableCollection HardwareBlowerTypes + public ObservableCollection ColorCatalogsItems { get { - return _hardwareblowertypes; + return _colorcatalogsitems; } set { - _hardwareblowertypes = value; RaisePropertyChanged(nameof(HardwareBlowerTypes)); + _colorcatalogsitems = value; RaisePropertyChanged(nameof(ColorCatalogsItems)); } } - private ICollectionView _hardwareblowertypesViewSource; + private ICollectionView _colorcatalogsitemsViewSource; /// - /// Gets or sets the HardwareBlowerTypes View Source. + /// Gets or sets the ColorCatalogsItems View Source. /// - public ICollectionView HardwareBlowerTypesViewSource + public ICollectionView ColorCatalogsItemsViewSource { get { - return _hardwareblowertypesViewSource; + return _colorcatalogsitemsViewSource; } set { - _hardwareblowertypesViewSource = value; RaisePropertyChanged(nameof(HardwareBlowerTypesViewSource)); + _colorcatalogsitemsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsViewSource)); } } - private ObservableCollection _hardwareblowers; + private ObservableCollection _colorcatalogsitemsrecipes; /// - /// Gets or sets the HardwareBlowers. + /// Gets or sets the ColorCatalogsItemsRecipes. /// - public ObservableCollection HardwareBlowers + public ObservableCollection ColorCatalogsItemsRecipes { get { - return _hardwareblowers; + return _colorcatalogsitemsrecipes; } set { - _hardwareblowers = value; RaisePropertyChanged(nameof(HardwareBlowers)); + _colorcatalogsitemsrecipes = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipes)); } } - private ICollectionView _hardwareblowersViewSource; + private ICollectionView _colorcatalogsitemsrecipesViewSource; /// - /// Gets or sets the HardwareBlowers View Source. + /// Gets or sets the ColorCatalogsItemsRecipes View Source. /// - public ICollectionView HardwareBlowersViewSource + public ICollectionView ColorCatalogsItemsRecipesViewSource { get { - return _hardwareblowersViewSource; + return _colorcatalogsitemsrecipesViewSource; } set { - _hardwareblowersViewSource = value; RaisePropertyChanged(nameof(HardwareBlowersViewSource)); + _colorcatalogsitemsrecipesViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipesViewSource)); } } - 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 +3877,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,12 +3945,6 @@ namespace Tango.BL ColorCatalogsItemsRecipesViewSource = CreateCollectionView(ColorCatalogsItemsRecipes); - ColorProcessDataViewSource = CreateCollectionView(ColorProcessData); - - ColorProcessFactorsViewSource = CreateCollectionView(ColorProcessFactors); - - ColorProcessParametersViewSource = CreateCollectionView(ColorProcessParameters); - ColorSpacesViewSource = CreateCollectionView(ColorSpaces); ConfigurationsViewSource = CreateCollectionView(Configurations); @@ -4015,20 +4045,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 +4083,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..0ad663bc6 100644 --- a/Software/Visual_Studio/Tango.BL/ObservablesStaticCollectionsExtension.cs +++ b/Software/Visual_Studio/Tango.BL/ObservablesStaticCollectionsExtension.cs @@ -53,3818 +53,3818 @@ 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 _colorspacesViewSource; + private ICollectionView _addressesViewSource; /// - /// Gets or sets the ColorSpaces View Source. + /// Gets or sets the Addresses View Source. /// - public ICollectionView ColorSpacesViewSource + public ICollectionView AddressesViewSource { get { - return _colorspacesViewSource; + return _addressesViewSource; } set { - _colorspacesViewSource = value; RaisePropertyChanged(nameof(ColorSpacesViewSource)); + _addressesViewSource = value; RaisePropertyChanged(nameof(AddressesViewSource)); } } - private ObservableCollection _configurations; + private ObservableCollection _applicationdisplaypanelversions; /// - /// Gets or sets the Configurations. + /// Gets or sets the ApplicationDisplayPanelVersions. /// - public ObservableCollection Configurations + public ObservableCollection ApplicationDisplayPanelVersions { get { - return _configurations; + return _applicationdisplaypanelversions; } set { - _configurations = value; RaisePropertyChanged(nameof(Configurations)); + _applicationdisplaypanelversions = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersions)); } } - private ICollectionView _configurationsViewSource; + private ICollectionView _applicationdisplaypanelversionsViewSource; /// - /// Gets or sets the Configurations View Source. + /// Gets or sets the ApplicationDisplayPanelVersions View Source. /// - public ICollectionView ConfigurationsViewSource + public ICollectionView ApplicationDisplayPanelVersionsViewSource { get { - return _configurationsViewSource; + return _applicationdisplaypanelversionsViewSource; } set { - _configurationsViewSource = value; RaisePropertyChanged(nameof(ConfigurationsViewSource)); + _applicationdisplaypanelversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationDisplayPanelVersionsViewSource)); } } - private ObservableCollection _contacts; + private ObservableCollection _applicationfirmwareversions; /// - /// Gets or sets the Contacts. + /// Gets or sets the ApplicationFirmwareVersions. /// - public ObservableCollection Contacts + public ObservableCollection ApplicationFirmwareVersions { get { - return _contacts; + return _applicationfirmwareversions; } set { - _contacts = value; RaisePropertyChanged(nameof(Contacts)); + _applicationfirmwareversions = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersions)); } } - private ICollectionView _contactsViewSource; + private ICollectionView _applicationfirmwareversionsViewSource; /// - /// Gets or sets the Contacts View Source. + /// Gets or sets the ApplicationFirmwareVersions View Source. /// - public ICollectionView ContactsViewSource + public ICollectionView ApplicationFirmwareVersionsViewSource { get { - return _contactsViewSource; + return _applicationfirmwareversionsViewSource; } set { - _contactsViewSource = value; RaisePropertyChanged(nameof(ContactsViewSource)); + _applicationfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationFirmwareVersionsViewSource)); } } - private ObservableCollection _customers; + private ObservableCollection _applicationosversions; /// - /// Gets or sets the Customers. + /// Gets or sets the ApplicationOsVersions. /// - public ObservableCollection Customers + public ObservableCollection ApplicationOsVersions { get { - return _customers; + return _applicationosversions; } set { - _customers = value; RaisePropertyChanged(nameof(Customers)); + _applicationosversions = value; RaisePropertyChanged(nameof(ApplicationOsVersions)); } } - private ICollectionView _customersViewSource; + private ICollectionView _applicationosversionsViewSource; /// - /// Gets or sets the Customers View Source. + /// Gets or sets the ApplicationOsVersions View Source. /// - public ICollectionView CustomersViewSource + public ICollectionView ApplicationOsVersionsViewSource { get { - return _customersViewSource; + return _applicationosversionsViewSource; } set { - _customersViewSource = value; RaisePropertyChanged(nameof(CustomersViewSource)); + _applicationosversionsViewSource = value; RaisePropertyChanged(nameof(ApplicationOsVersionsViewSource)); } } - private ObservableCollection _datastoreitems; + private ObservableCollection _bittypes; /// - /// Gets or sets the DataStoreItems. + /// Gets or sets the BitTypes. /// - public ObservableCollection DataStoreItems + public ObservableCollection BitTypes { get { - return _datastoreitems; + return _bittypes; } set { - _datastoreitems = value; RaisePropertyChanged(nameof(DataStoreItems)); + _bittypes = value; RaisePropertyChanged(nameof(BitTypes)); } } - private ICollectionView _datastoreitemsViewSource; + private ICollectionView _bittypesViewSource; /// - /// Gets or sets the DataStoreItems View Source. + /// Gets or sets the BitTypes View Source. /// - public ICollectionView DataStoreItemsViewSource + public ICollectionView BitTypesViewSource { get { - return _datastoreitemsViewSource; + return _bittypesViewSource; } set { - _datastoreitemsViewSource = value; RaisePropertyChanged(nameof(DataStoreItemsViewSource)); + _bittypesViewSource = value; RaisePropertyChanged(nameof(BitTypesViewSource)); } } - private ObservableCollection _dispensertypes; + private ObservableCollection _brushstops; /// - /// Gets or sets the DispenserTypes. + /// Gets or sets the BrushStops. /// - public ObservableCollection DispenserTypes + public ObservableCollection BrushStops { get { - return _dispensertypes; + return _brushstops; } set { - _dispensertypes = value; RaisePropertyChanged(nameof(DispenserTypes)); + _brushstops = value; RaisePropertyChanged(nameof(BrushStops)); } } - private ICollectionView _dispensertypesViewSource; + private ICollectionView _brushstopsViewSource; /// - /// Gets or sets the DispenserTypes View Source. + /// Gets or sets the BrushStops View Source. /// - public ICollectionView DispenserTypesViewSource + public ICollectionView BrushStopsViewSource { get { - return _dispensertypesViewSource; + return _brushstopsViewSource; } set { - _dispensertypesViewSource = value; RaisePropertyChanged(nameof(DispenserTypesViewSource)); + _brushstopsViewSource = value; RaisePropertyChanged(nameof(BrushStopsViewSource)); } } - private ObservableCollection _dispensers; + private ObservableCollection _btsrapplicationtypes; /// - /// Gets or sets the Dispensers. + /// Gets or sets the BtsrApplicationTypes. /// - public ObservableCollection Dispensers + public ObservableCollection BtsrApplicationTypes { get { - return _dispensers; + return _btsrapplicationtypes; } set { - _dispensers = value; RaisePropertyChanged(nameof(Dispensers)); + _btsrapplicationtypes = value; RaisePropertyChanged(nameof(BtsrApplicationTypes)); } } - private ICollectionView _dispensersViewSource; + private ICollectionView _btsrapplicationtypesViewSource; /// - /// Gets or sets the Dispensers View Source. + /// Gets or sets the BtsrApplicationTypes View Source. /// - public ICollectionView DispensersViewSource + public ICollectionView BtsrApplicationTypesViewSource { get { - return _dispensersViewSource; + return _btsrapplicationtypesViewSource; } set { - _dispensersViewSource = value; RaisePropertyChanged(nameof(DispensersViewSource)); + _btsrapplicationtypesViewSource = value; RaisePropertyChanged(nameof(BtsrApplicationTypesViewSource)); } } - private ObservableCollection _embeddedfirmwareversions; + private ObservableCollection _btsryarntypes; /// - /// Gets or sets the EmbeddedFirmwareVersions. + /// Gets or sets the BtsrYarnTypes. /// - public ObservableCollection EmbeddedFirmwareVersions + public ObservableCollection BtsrYarnTypes { get { - return _embeddedfirmwareversions; + return _btsryarntypes; } set { - _embeddedfirmwareversions = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersions)); + _btsryarntypes = value; RaisePropertyChanged(nameof(BtsrYarnTypes)); } } - private ICollectionView _embeddedfirmwareversionsViewSource; + private ICollectionView _btsryarntypesViewSource; /// - /// Gets or sets the EmbeddedFirmwareVersions View Source. + /// Gets or sets the BtsrYarnTypes View Source. /// - public ICollectionView EmbeddedFirmwareVersionsViewSource + public ICollectionView BtsrYarnTypesViewSource { get { - return _embeddedfirmwareversionsViewSource; + return _btsryarntypesViewSource; } set { - _embeddedfirmwareversionsViewSource = value; RaisePropertyChanged(nameof(EmbeddedFirmwareVersionsViewSource)); + _btsryarntypesViewSource = value; RaisePropertyChanged(nameof(BtsrYarnTypesViewSource)); } } - private ObservableCollection _eventtypes; + private ObservableCollection _cartridgetypes; /// - /// Gets or sets the EventTypes. + /// Gets or sets the CartridgeTypes. /// - public ObservableCollection EventTypes + public ObservableCollection CartridgeTypes { get { - return _eventtypes; + return _cartridgetypes; } set { - _eventtypes = value; RaisePropertyChanged(nameof(EventTypes)); + _cartridgetypes = value; RaisePropertyChanged(nameof(CartridgeTypes)); } } - private ICollectionView _eventtypesViewSource; + private ICollectionView _cartridgetypesViewSource; /// - /// Gets or sets the EventTypes View Source. + /// Gets or sets the CartridgeTypes View Source. /// - public ICollectionView EventTypesViewSource + public ICollectionView CartridgeTypesViewSource { get { - return _eventtypesViewSource; + return _cartridgetypesViewSource; } set { - _eventtypesViewSource = value; RaisePropertyChanged(nameof(EventTypesViewSource)); + _cartridgetypesViewSource = value; RaisePropertyChanged(nameof(CartridgeTypesViewSource)); } } - private ObservableCollection _fibershapes; + private ObservableCollection _cats; /// - /// Gets or sets the FiberShapes. + /// Gets or sets the Cats. /// - public ObservableCollection FiberShapes + public ObservableCollection Cats { get { - return _fibershapes; + return _cats; } set { - _fibershapes = value; RaisePropertyChanged(nameof(FiberShapes)); + _cats = value; RaisePropertyChanged(nameof(Cats)); } } - private ICollectionView _fibershapesViewSource; + private ICollectionView _catsViewSource; /// - /// Gets or sets the FiberShapes View Source. + /// Gets or sets the Cats View Source. /// - public ICollectionView FiberShapesViewSource + public ICollectionView CatsViewSource { get { - return _fibershapesViewSource; + return _catsViewSource; } set { - _fibershapesViewSource = value; RaisePropertyChanged(nameof(FiberShapesViewSource)); + _catsViewSource = value; RaisePropertyChanged(nameof(CatsViewSource)); } } - private ObservableCollection _fibersynths; + private ObservableCollection _ccts; /// - /// Gets or sets the FiberSynths. + /// Gets or sets the Ccts. /// - public ObservableCollection FiberSynths + public ObservableCollection Ccts { get { - return _fibersynths; + return _ccts; } set { - _fibersynths = value; RaisePropertyChanged(nameof(FiberSynths)); + _ccts = value; RaisePropertyChanged(nameof(Ccts)); } } - private ICollectionView _fibersynthsViewSource; + private ICollectionView _cctsViewSource; /// - /// Gets or sets the FiberSynths View Source. + /// Gets or sets the Ccts View Source. /// - public ICollectionView FiberSynthsViewSource + public ICollectionView CctsViewSource { get { - return _fibersynthsViewSource; + return _cctsViewSource; } set { - _fibersynthsViewSource = value; RaisePropertyChanged(nameof(FiberSynthsViewSource)); + _cctsViewSource = value; RaisePropertyChanged(nameof(CctsViewSource)); } } - private ObservableCollection _fseversions; + private ObservableCollection _colorcatalogs; /// - /// Gets or sets the FseVersions. + /// Gets or sets the ColorCatalogs. /// - public ObservableCollection FseVersions + public ObservableCollection ColorCatalogs { get { - return _fseversions; + return _colorcatalogs; } set { - _fseversions = value; RaisePropertyChanged(nameof(FseVersions)); + _colorcatalogs = value; RaisePropertyChanged(nameof(ColorCatalogs)); } } - private ICollectionView _fseversionsViewSource; + private ICollectionView _colorcatalogsViewSource; /// - /// Gets or sets the FseVersions View Source. + /// Gets or sets the ColorCatalogs View Source. /// - public ICollectionView FseVersionsViewSource + public ICollectionView ColorCatalogsViewSource { get { - return _fseversionsViewSource; + return _colorcatalogsViewSource; } set { - _fseversionsViewSource = value; RaisePropertyChanged(nameof(FseVersionsViewSource)); + _colorcatalogsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsViewSource)); } } - private ObservableCollection _globaldatastoreitems; + private ObservableCollection _colorcatalogsgroups; /// - /// Gets or sets the GlobalDataStoreItems. + /// Gets or sets the ColorCatalogsGroups. /// - public ObservableCollection GlobalDataStoreItems + public ObservableCollection ColorCatalogsGroups { get { - return _globaldatastoreitems; + return _colorcatalogsgroups; } set { - _globaldatastoreitems = value; RaisePropertyChanged(nameof(GlobalDataStoreItems)); + _colorcatalogsgroups = value; RaisePropertyChanged(nameof(ColorCatalogsGroups)); } } - private ICollectionView _globaldatastoreitemsViewSource; + private ICollectionView _colorcatalogsgroupsViewSource; /// - /// Gets or sets the GlobalDataStoreItems View Source. + /// Gets or sets the ColorCatalogsGroups View Source. /// - public ICollectionView GlobalDataStoreItemsViewSource + public ICollectionView ColorCatalogsGroupsViewSource { get { - return _globaldatastoreitemsViewSource; + return _colorcatalogsgroupsViewSource; } set { - _globaldatastoreitemsViewSource = value; RaisePropertyChanged(nameof(GlobalDataStoreItemsViewSource)); + _colorcatalogsgroupsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsGroupsViewSource)); } } - private ObservableCollection _hardwareblowertypes; + private ObservableCollection _colorcatalogsitems; /// - /// Gets or sets the HardwareBlowerTypes. + /// Gets or sets the ColorCatalogsItems. /// - public ObservableCollection HardwareBlowerTypes + public ObservableCollection ColorCatalogsItems { get { - return _hardwareblowertypes; + return _colorcatalogsitems; } set { - _hardwareblowertypes = value; RaisePropertyChanged(nameof(HardwareBlowerTypes)); + _colorcatalogsitems = value; RaisePropertyChanged(nameof(ColorCatalogsItems)); } } - private ICollectionView _hardwareblowertypesViewSource; + private ICollectionView _colorcatalogsitemsViewSource; /// - /// Gets or sets the HardwareBlowerTypes View Source. + /// Gets or sets the ColorCatalogsItems View Source. /// - public ICollectionView HardwareBlowerTypesViewSource + public ICollectionView ColorCatalogsItemsViewSource { get { - return _hardwareblowertypesViewSource; + return _colorcatalogsitemsViewSource; } set { - _hardwareblowertypesViewSource = value; RaisePropertyChanged(nameof(HardwareBlowerTypesViewSource)); + _colorcatalogsitemsViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsViewSource)); } } - private ObservableCollection _hardwareblowers; + private ObservableCollection _colorcatalogsitemsrecipes; /// - /// Gets or sets the HardwareBlowers. + /// Gets or sets the ColorCatalogsItemsRecipes. /// - public ObservableCollection HardwareBlowers + public ObservableCollection ColorCatalogsItemsRecipes { get { - return _hardwareblowers; + return _colorcatalogsitemsrecipes; } set { - _hardwareblowers = value; RaisePropertyChanged(nameof(HardwareBlowers)); + _colorcatalogsitemsrecipes = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipes)); } } - private ICollectionView _hardwareblowersViewSource; + private ICollectionView _colorcatalogsitemsrecipesViewSource; /// - /// Gets or sets the HardwareBlowers View Source. + /// Gets or sets the ColorCatalogsItemsRecipes View Source. /// - public ICollectionView HardwareBlowersViewSource + public ICollectionView ColorCatalogsItemsRecipesViewSource { get { - return _hardwareblowersViewSource; + return _colorcatalogsitemsrecipesViewSource; } set { - _hardwareblowersViewSource = value; RaisePropertyChanged(nameof(HardwareBlowersViewSource)); + _colorcatalogsitemsrecipesViewSource = value; RaisePropertyChanged(nameof(ColorCatalogsItemsRecipesViewSource)); } } - 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 +3877,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,12 +3945,6 @@ namespace Tango.BL ColorCatalogsItemsRecipesViewSource = CreateCollectionView(ColorCatalogsItemsRecipes); - ColorProcessDataViewSource = CreateCollectionView(ColorProcessData); - - ColorProcessFactorsViewSource = CreateCollectionView(ColorProcessFactors); - - ColorProcessParametersViewSource = CreateCollectionView(ColorProcessParameters); - ColorSpacesViewSource = CreateCollectionView(ColorSpaces); ConfigurationsViewSource = CreateCollectionView(Configurations); @@ -4015,20 +4045,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 +4083,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.DAL.Remote/DB/BRUSH_STOPS.cs b/Software/Visual_Studio/Tango.DAL.Remote/DB/BRUSH_STOPS.cs index 34384cb8f..5671e17a3 100644 --- a/Software/Visual_Studio/Tango.DAL.Remote/DB/BRUSH_STOPS.cs +++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/BRUSH_STOPS.cs @@ -55,6 +55,9 @@ namespace Tango.DAL.Remote.DB public string COLOR_CATALOG_GUID { get; set; } public string COLOR_CATALOGS_ITEM_GUID { get; set; } public bool IS_TRANSPARENT { get; set; } + public Nullable BEST_MATCH_R { get; set; } + public Nullable BEST_MATCH_G { get; set; } + public Nullable BEST_MATCH_B { get; set; } public virtual COLOR_CATALOGS COLOR_CATALOGS { get; set; } public virtual COLOR_CATALOGS_ITEMS COLOR_CATALOGS_ITEMS { 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/RemoteADO.edmx b/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx index 78b7b3fdf..ac31bd2b9 100644 --- a/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx +++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/RemoteADO.edmx @@ -123,6 +123,9 @@ + + + @@ -950,6 +953,7 @@ + @@ -4787,6 +4791,9 @@ + + + @@ -5684,6 +5691,7 @@ + @@ -7810,6 +7818,9 @@ + + + @@ -8682,6 +8693,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..b2979ab7f 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,94 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Software/Visual_Studio/Tango.SharedUI/Controls/NavigationControl.cs b/Software/Visual_Studio/Tango.SharedUI/Controls/NavigationControl.cs index cefdbbfd6..29c260563 100644 --- a/Software/Visual_Studio/Tango.SharedUI/Controls/NavigationControl.cs +++ b/Software/Visual_Studio/Tango.SharedUI/Controls/NavigationControl.cs @@ -282,7 +282,10 @@ namespace Tango.SharedUI.Controls private void OnSelectedIndexChanged() { - SelectedElement = Elements[SelectedIndex > Elements.Count - 1 ? 0 : SelectedIndex]; + if (Elements.Count > 0 && SelectedIndex > -1) + { + SelectedElement = Elements[SelectedIndex > Elements.Count - 1 ? 0 : SelectedIndex]; + } } #endregion diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs index 18fb0726f..ad185f1a3 100644 --- a/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs +++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs @@ -117,7 +117,14 @@ namespace Tango.Touch.Controls public static readonly DependencyProperty UpdateBindingOnlyWhenFocusedProperty = DependencyProperty.Register("UpdateBindingOnlyWhenFocused", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(false)); - + public virtual bool HasError + { + get + { + return Validation.GetHasError(this); + } + } + public override void OnApplyTemplate() { @@ -161,13 +168,16 @@ namespace Tango.Touch.Controls value = Math.Round(value, 0); } - if (value < Minimum) - { - value = Minimum; - } - else if (value > Maximum) + if (Maximum > Minimum) { - value = Maximum; + if (value < Minimum) + { + value = Minimum; + } + else if (value > Maximum) + { + value = Maximum; + } } } diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.xaml b/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.xaml index d347480d6..f26e53e73 100644 --- a/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.xaml +++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.xaml @@ -8,8 +8,8 @@ xmlns:local="clr-namespace:Tango.Touch.Controls"> - - + + @@ -40,8 +40,8 @@ BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" keyboard:KeyboardView.Container="{TemplateBinding KeyboardContainer}"> - - + + @@ -72,7 +72,7 @@ - + diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchTextBox.xaml b/Software/Visual_Studio/Tango.Touch/Controls/TouchTextBox.xaml index dcb52859e..c95c87782 100644 --- a/Software/Visual_Studio/Tango.Touch/Controls/TouchTextBox.xaml +++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchTextBox.xaml @@ -8,7 +8,8 @@ xmlns:local="clr-namespace:Tango.Touch.Controls"> - + + @@ -39,7 +40,7 @@ - + diff --git a/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml b/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml index df917b20e..f8db0094f 100644 --- a/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml +++ b/Software/Visual_Studio/Tango.Touch/Resources/Fonts.xaml @@ -21,6 +21,7 @@ 22 23 + 23 21 26 diff --git a/Software/Visual_Studio/Tango.Touch/Styles/TouchExpander.xaml b/Software/Visual_Studio/Tango.Touch/Styles/TouchExpander.xaml new file mode 100644 index 000000000..d61203e3b --- /dev/null +++ b/Software/Visual_Studio/Tango.Touch/Styles/TouchExpander.xaml @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Software/Visual_Studio/Tango.Touch/Styles/TouchNumericUpDownControl.xaml b/Software/Visual_Studio/Tango.Touch/Styles/TouchNumericUpDownControl.xaml new file mode 100644 index 000000000..f50e04742 --- /dev/null +++ b/Software/Visual_Studio/Tango.Touch/Styles/TouchNumericUpDownControl.xaml @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Software/Visual_Studio/Tango.Touch/Tango.Touch.csproj b/Software/Visual_Studio/Tango.Touch/Tango.Touch.csproj index d7a25aeff..ae5ac91e3 100644 --- a/Software/Visual_Studio/Tango.Touch/Tango.Touch.csproj +++ b/Software/Visual_Studio/Tango.Touch/Tango.Touch.csproj @@ -147,6 +147,14 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + + + Designer + MSBuild:Compile + Designer MSBuild:Compile @@ -480,7 +488,7 @@ - + \ No newline at end of file diff --git a/Software/Visual_Studio/Tango.Touch/Themes/Generic.xaml b/Software/Visual_Studio/Tango.Touch/Themes/Generic.xaml index 132082d81..c2c6c0bc9 100644 --- a/Software/Visual_Studio/Tango.Touch/Themes/Generic.xaml +++ b/Software/Visual_Studio/Tango.Touch/Themes/Generic.xaml @@ -60,6 +60,8 @@ + + diff --git a/Software/Visual_Studio/Tango.Touch/TouchColorPickerControls/TouchColorPickerCMYKControl.cs b/Software/Visual_Studio/Tango.Touch/TouchColorPickerControls/TouchColorPickerCMYKControl.cs index c32310897..39eab1984 100644 --- a/Software/Visual_Studio/Tango.Touch/TouchColorPickerControls/TouchColorPickerCMYKControl.cs +++ b/Software/Visual_Studio/Tango.Touch/TouchColorPickerControls/TouchColorPickerCMYKControl.cs @@ -283,7 +283,7 @@ namespace Tango.Touch.Controls TouchColorPickerCMYKControl TouchColorPickerCMYKControl = (TouchColorPickerCMYKControl)d; if (TouchColorPickerCMYKControl != null) { - TouchColorPickerCMYKControl.OnCyanPropertyChanged((double)e.OldValue, (double)e.NewValue); + TouchColorPickerCMYKControl.OnCyanPropertyChanged((double)e.OldValue, Math.Round((double)e.NewValue, 2, MidpointRounding.AwayFromZero)); } } @@ -300,7 +300,7 @@ namespace Tango.Touch.Controls TouchColorPickerCMYKControl TouchColorPickerCMYKControl = (TouchColorPickerCMYKControl)d; if (TouchColorPickerCMYKControl != null) { - TouchColorPickerCMYKControl.OnMagentaLabPropertyChanged((double)e.OldValue, (double)e.NewValue); + TouchColorPickerCMYKControl.OnMagentaLabPropertyChanged((double)e.OldValue, Math.Round((double)e.NewValue, 2, MidpointRounding.AwayFromZero)); } } @@ -317,7 +317,7 @@ namespace Tango.Touch.Controls TouchColorPickerCMYKControl TouchColorPickerCMYKControl = (TouchColorPickerCMYKControl)d; if (TouchColorPickerCMYKControl != null) { - TouchColorPickerCMYKControl.OnYellowPropertyChanged((double)e.OldValue, (double)e.NewValue); + TouchColorPickerCMYKControl.OnYellowPropertyChanged((double)e.OldValue, Math.Round((double)e.NewValue, 2, MidpointRounding.AwayFromZero)); } } private void OnYellowPropertyChanged(double oldValue, double newValue) @@ -333,7 +333,7 @@ namespace Tango.Touch.Controls TouchColorPickerCMYKControl TouchColorPickerCMYKControl = (TouchColorPickerCMYKControl)d; if (TouchColorPickerCMYKControl != null) { - TouchColorPickerCMYKControl.OnKeyPropertyChanged((double)e.OldValue, (double)e.NewValue); + TouchColorPickerCMYKControl.OnKeyPropertyChanged((double)e.OldValue, Math.Round((double)e.NewValue, 2, MidpointRounding.AwayFromZero)); } } private void OnKeyPropertyChanged(double oldValue, double newValue) @@ -401,7 +401,7 @@ namespace Tango.Touch.Controls { SelectedColor = ConvertCMYKToRGBColor(e.NewValue / 100, _magentaColorSlider.ColorValue / 100, _yellowColorSlider.ColorValue / 100, _keyColorSlider.ColorValue / 100); //_cyanColorSlider.SelectedColor = SelectedColor; - Cyan = Math.Round(e.NewValue, 2, MidpointRounding.AwayFromZero); + Cyan = e.NewValue; _cyanColorSlider.SelectedColor = GetRelativeColor(_cyanColorSlider.PickerBrush.GradientStops, GetOffset(e.NewValue, _cyanColorSlider.MinValue, _cyanColorSlider.MaxValue)); @@ -423,7 +423,7 @@ namespace Tango.Touch.Controls { SelectedColor = ConvertCMYKToRGBColor(_cyanColorSlider.ColorValue / 100, e.NewValue / 100, _yellowColorSlider.ColorValue / 100, _keyColorSlider.ColorValue / 100); //_magentaColorSlider.SelectedColor = SelectedColor; - Magenta = Math.Round(e.NewValue, 2, MidpointRounding.AwayFromZero); + Magenta = e.NewValue; _magentaColorSlider.SelectedColor = GetRelativeColor(_magentaColorSlider.PickerBrush.GradientStops, GetOffset(e.NewValue, _magentaColorSlider.MinValue, _magentaColorSlider.MaxValue)); @@ -445,7 +445,7 @@ namespace Tango.Touch.Controls { SelectedColor = ConvertCMYKToRGBColor(_cyanColorSlider.ColorValue / 100, _magentaColorSlider.ColorValue / 100, e.NewValue / 100, _keyColorSlider.ColorValue / 100); //_yellowColorSlider.SelectedColor = SelectedColor; - Yellow = Math.Round(e.NewValue, 2, MidpointRounding.AwayFromZero); + Yellow = e.NewValue; _yellowColorSlider.SelectedColor = GetRelativeColor(_yellowColorSlider.PickerBrush.GradientStops, GetOffset(e.NewValue, _yellowColorSlider.MinValue, _yellowColorSlider.MaxValue)); @@ -467,7 +467,7 @@ namespace Tango.Touch.Controls { SelectedColor = ConvertCMYKToRGBColor(_cyanColorSlider.ColorValue / 100, _magentaColorSlider.ColorValue / 100, _yellowColorSlider.ColorValue / 100, e.NewValue / 100); //_keyColorSlider.SelectedColor = SelectedColor; - Key = Math.Round(e.NewValue, 2, MidpointRounding.AwayFromZero); + Key = e.NewValue; _keyColorSlider.SelectedColor = GetRelativeColor(_keyColorSlider.PickerBrush.GradientStops, GetOffset(e.NewValue, _keyColorSlider.MinValue, _keyColorSlider.MaxValue)); -- cgit v1.3.1