diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-10-27 17:54:49 +0300 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-10-27 17:54:49 +0300 |
| commit | 3f32716c553a5f13770c38b3a49c81259ac4ba08 (patch) | |
| tree | 9e384ce8167ac0ac42e58904362c42590e1ac455 /Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs | |
| parent | ff83c0166397d03b923157751d8b406615c977f7 (diff) | |
| download | Tango-3f32716c553a5f13770c38b3a49c81259ac4ba08.tar.gz Tango-3f32716c553a5f13770c38b3a49c81259ac4ba08.zip | |
Implemented hot folder architecture & installers integration.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs index 8513d18ac..881e5bcef 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs @@ -30,6 +30,7 @@ using Tango.PPC.Common.RemoteActions; using Tango.PPC.Common.RemoteAssistance; using Tango.PPC.Common.RemoteDesktop; using Tango.PPC.Common.RemoteJob; +using Tango.PPC.Common.RemoteJobUpload; using Tango.PPC.Common.RemoteNotifications; using Tango.PPC.Common.SQL; using Tango.PPC.Common.Storage; @@ -107,6 +108,7 @@ namespace Tango.PPC.UI TangoIOC.Default.Unregister<IDataStoreService>(); TangoIOC.Default.Unregister<IBitManager>(); TangoIOC.Default.Unregister<IRemoteNotificationsService>(); + TangoIOC.Default.Unregister<IRemoteJobUploadService>(); if (App.StartupArgs != null && App.StartupArgs.Contains("-webDebug")) { @@ -153,6 +155,7 @@ namespace Tango.PPC.UI TangoIOC.Default.Register<IDataStoreService, DefaultDataStoreService>(); TangoIOC.Default.Register<IBitManager, DefaultBitManager>(); TangoIOC.Default.Register<IRemoteNotificationsService, DefaultRemoteNotificationsService>(); + TangoIOC.Default.Register<IRemoteJobUploadService, DefaultRemoteJobUploadService>(); TangoIOC.Default.Register<LoadingViewVM>(); TangoIOC.Default.Register<MainViewVM>(); |
