aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Technician/ViewModelLocator.cs
diff options
context:
space:
mode:
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>();
- }
- }
}
}