diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-30 11:47:03 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-30 11:47:03 +0300 |
| commit | 019bc4dca9a0655e5adf1e26d8e3f513563113db (patch) | |
| tree | 34f2d5e9d80d2d12a7e7c41e31dff1fd424a8fe2 /Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels | |
| parent | e9c55f4d18b0aac54e1a726ffca0c3c10d2c23ff (diff) | |
| download | Tango-019bc4dca9a0655e5adf1e26d8e3f513563113db.tar.gz Tango-019bc4dca9a0655e5adf1e26d8e3f513563113db.zip | |
Improved and optimized transport layer transporter and adapter.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels/MainViewVM.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels/MainViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels/MainViewVM.cs index 877374a40..61ce69e4e 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels/MainViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels/MainViewVM.cs @@ -3,7 +3,9 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using Tango.Core.DI; using Tango.PPC.Common; +using Tango.PPC.Common.ExternalBridge; namespace Tango.PPC.MachineSettings.ViewModels { @@ -14,6 +16,12 @@ namespace Tango.PPC.MachineSettings.ViewModels public class MainViewVM : PPCViewModel { /// <summary> + /// Gets or sets the external bridge service. + /// </summary> + [TangoInject] + public IPPCExternalBridgeService ExternalBridgeService { get; set; } + + /// <summary> /// Called when the application has been started /// </summary> public override void OnApplicationStarted() |
