diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs b/Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs index 7a5a28050..cd082dae7 100644 --- a/Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs +++ b/Software/Visual_Studio/Tango.BL/ObservablesEntitiesAdapterExtension.cs @@ -1529,6 +1529,42 @@ namespace Tango.BL } + private ObservableCollection<ColorMeasurement> _colormeasurements; + /// <summary> + /// Gets or sets the ColorMeasurements. + /// </summary> + public ObservableCollection<ColorMeasurement> ColorMeasurements + { + get + { + return _colormeasurements; + } + + set + { + _colormeasurements = value; RaisePropertyChanged(nameof(ColorMeasurements)); + } + + } + + private ICollectionView _colormeasurementsViewSource; + /// <summary> + /// Gets or sets the ColorMeasurements View Source. + ///</summary> + public ICollectionView ColorMeasurementsViewSource + { + get + { + return _colormeasurementsViewSource; + } + + set + { + _colormeasurementsViewSource = value; RaisePropertyChanged(nameof(ColorMeasurementsViewSource)); + } + + } + private ObservableCollection<ColorProcessInkUptake> _colorprocessinkuptake; /// <summary> /// Gets or sets the ColorProcessInkUptake. @@ -4499,6 +4535,8 @@ namespace Tango.BL ColorCatalogsItemsRecipesViewSource = CreateCollectionView(ColorCatalogsItemsRecipes); + ColorMeasurementsViewSource = CreateCollectionView(ColorMeasurements); + ColorProcessInkUptakeViewSource = CreateCollectionView(ColorProcessInkUptake); ColorSpacesViewSource = CreateCollectionView(ColorSpaces); |
