aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels
diff options
context:
space:
mode:
authorAvi Levkovich <avi@twine-s.com>2018-06-18 17:06:45 +0300
committerAvi Levkovich <avi@twine-s.com>2018-06-18 17:06:45 +0300
commit70546e7e106b1d254a1f8069c07e8294d322065b (patch)
tree2fa5ef9bb4c8d7a529613d0503de8d2d0b702248 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels
parentd1b8cc4b821a2312e4edd9139a9c9d2ee0e991e1 (diff)
parent2baa6b0a84284804c699c48b0bbbde85cd8d3975 (diff)
downloadTango-70546e7e106b1d254a1f8069c07e8294d322065b.tar.gz
Tango-70546e7e106b1d254a1f8069c07e8294d322065b.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/SpoolTypesViewVM.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/SpoolTypesViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/SpoolTypesViewVM.cs
new file mode 100644
index 000000000..cc52e6e95
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/SpoolTypesViewVM.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.BL.Entities;
+using Tango.MachineStudio.Common.Notifications;
+
+namespace Tango.MachineStudio.DB.ViewModels
+{
+ public class SpoolTypesViewVM : DbTableViewModel<SpoolType>
+ {
+ public SpoolTypesViewVM(INotificationProvider notification) : base(notification)
+ {
+
+ }
+ }
+}