diff options
| author | Roy <roy.mail.net@gmail.com> | 2017-12-17 00:43:24 +0200 |
|---|---|---|
| committer | Roy <roy.mail.net@gmail.com> | 2017-12-17 00:43:24 +0200 |
| commit | 8c021f470bca9a938dbfcd425f7056c1ae71a305 (patch) | |
| tree | 4e188d817a0aac4421260497109234751965cdfd /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/IdsPacksViewVM.cs | |
| parent | e95ade818a640ba17f7da58bc6df58442e591c8a (diff) | |
| download | Tango-8c021f470bca9a938dbfcd425f7056c1ae71a305.tar.gz Tango-8c021f470bca9a938dbfcd425f7056c1ae71a305.zip | |
Fixed issue on remote db with IDS_Pack FK.
Added:
Cartridges,
Cartridges Types,
Dispensers,
Dispensers Types,
IDS Packs,
Liquids,
To DB Module.
Added stripped out version of WPF Extended Tools Color Picker as Tango.ColorPicker.
Implemented ColorHelper in Tango.Core with Integer to Color conversion for database storage of colors.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/IdsPacksViewVM.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/IdsPacksViewVM.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/IdsPacksViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/IdsPacksViewVM.cs new file mode 100644 index 000000000..202dd959f --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/IdsPacksViewVM.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.DAL.Observables; +using Tango.MachineStudio.Common.Notifications; + +namespace Tango.MachineStudio.DB.ViewModels +{ + public class IdsPacksViewVM : DbTableViewModel<IdsPack> + { + public IdsPacksViewVM(INotificationProvider notification) : base(notification) + { + + } + } +} |
