diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2018-06-18 17:17:54 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2018-06-18 17:17:54 +0300 |
| commit | abe3be77d04fe00d179da2eacee647b675fe9f9f (patch) | |
| tree | 806515c820cd70e36381edad48d7d08b75b4ab1f /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels | |
| parent | 253ef67316c94ea789d6fa8adf315a684a24f8fe (diff) | |
| parent | 70546e7e106b1d254a1f8069c07e8294d322065b (diff) | |
| download | Tango-abe3be77d04fe00d179da2eacee647b675fe9f9f.tar.gz Tango-abe3be77d04fe00d179da2eacee647b675fe9f9f.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.cs | 18 |
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) + { + + } + } +} |
