diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-16 19:50:33 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-16 19:50:33 +0200 |
| commit | df8c13b71a49d757c47a892be01599eefcd36a2f (patch) | |
| tree | 1e50ee45492978032e89116229e9db5beee0bc2c /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels | |
| parent | 9695aef4cf1ac2d85d6905e73c4f4aa079cc7c1d (diff) | |
| download | Tango-df8c13b71a49d757c47a892be01599eefcd36a2f.tar.gz Tango-df8c13b71a49d757c47a892be01599eefcd36a2f.zip | |
Added Max_NL_Per_CM to DB Module !!
Added Liquid_Types_Rml table to DB module.
Added new nl/cm to dispenser.
Added capacity to dispenser.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels')
2 files changed, 19 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/DispenserTypesViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/DispenserTypesViewVM.cs index 5ffe0d58c..97adfa7d4 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/DispenserTypesViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/DispenserTypesViewVM.cs @@ -12,6 +12,7 @@ namespace Tango.MachineStudio.DB.ViewModels { public DispenserTypesViewVM(INotificationProvider notification) : base(notification) { + } } } diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/LiquidTypesRmlsViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/LiquidTypesRmlsViewVM.cs new file mode 100644 index 000000000..5b8e3749f --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/LiquidTypesRmlsViewVM.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 LiquidTypesRmlsViewVM : DbTableViewModel<LiquidTypesRml> + { + public LiquidTypesRmlsViewVM(INotificationProvider notification) : base(notification) + { + + } + } +} |
