aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Technician/ViewModelLocator.cs
diff options
context:
space:
mode:
authorMirta <mirta@twine-s.com>2020-12-30 16:39:52 +0200
committerMirta <mirta@twine-s.com>2020-12-30 16:39:52 +0200
commit00a491d93733d4625ad329b2ba8237f445364b3f (patch)
tree4b24c6fa78d7648f4bb7cefafa464bb0b063fec4 /Software/Visual_Studio/PPC/Modules/Tango.PPC.Technician/ViewModelLocator.cs
parent124ad4150f80c6846fdee41dbbda9848c105f6e5 (diff)
downloadTango-00a491d9.tar.gz
Tango-00a491d9.zip
merge
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Technician/ViewModelLocator.cs')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.Technician/ViewModelLocator.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Technician/ViewModelLocator.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Technician/ViewModelLocator.cs
index 9a8b63c91..ae4678e60 100644
--- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Technician/ViewModelLocator.cs
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Technician/ViewModelLocator.cs
@@ -20,9 +20,6 @@ namespace Tango.PPC.Technician
TangoIOC.Default.Register<CatalogViewVM>();
TangoIOC.Default.Register<DispensersViewVM>();
TangoIOC.Default.Register<SystemViewVM>();
- TangoIOC.Default.Register<PackagesViewVM>();
- TangoIOC.Default.Register<UpdatesViewVM>();
- TangoIOC.Default.Register<RemoteConnectionsViewVM>();
}
/// <summary>
@@ -79,38 +76,5 @@ namespace Tango.PPC.Technician
return TangoIOC.Default.GetInstance<SystemViewVM>();
}
}
-
- /// <summary>
- /// Gets the system view VM.
- /// </summary>
- public static PackagesViewVM PackagesViewVM
- {
- get
- {
- return TangoIOC.Default.GetInstance<PackagesViewVM>();
- }
- }
-
- /// <summary>
- /// Gets the synchronization view vm.
- /// </summary>
- public static UpdatesViewVM UpdatesViewVM
- {
- get
- {
- return TangoIOC.Default.GetInstance<UpdatesViewVM>();
- }
- }
-
- /// <summary>
- /// Gets the remote connections view vm.
- /// </summary>
- public static RemoteConnectionsViewVM RemoteConnectionsViewVM
- {
- get
- {
- return TangoIOC.Default.GetInstance<RemoteConnectionsViewVM>();
- }
- }
}
}