aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Browser/ViewModelLocator.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2019-12-12 13:00:45 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2019-12-12 13:00:45 +0200
commit5fdb4170c92072fa5a3ee32a779bea2ed83b8ef0 (patch)
tree231e9b316e3b1f30c815d9bcec5d8b7815625201 /Software/Visual_Studio/PPC/Modules/Tango.PPC.Browser/ViewModelLocator.cs
parent217fcb79fa32f858a06d8200697ddee7c5da625a (diff)
downloadTango-5fdb4170c92072fa5a3ee32a779bea2ed83b8ef0.tar.gz
Tango-5fdb4170c92072fa5a3ee32a779bea2ed83b8ef0.zip
Added more functionality to browser module.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Browser/ViewModelLocator.cs')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.Browser/ViewModelLocator.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Browser/ViewModelLocator.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Browser/ViewModelLocator.cs
index 30f936433..054310e99 100644
--- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Browser/ViewModelLocator.cs
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Browser/ViewModelLocator.cs
@@ -15,17 +15,17 @@ namespace Tango.PPC.Browser
/// </summary>
static ViewModelLocator()
{
- TangoIOC.Default.Register<MainViewVM>();
+ TangoIOC.Default.Register<BrowserViewVM>();
}
/// <summary>
/// Gets the main view VM.
/// </summary>
- public static MainViewVM MainViewVM
+ public static BrowserViewVM BrowserViewVM
{
get
{
- return TangoIOC.Default.GetInstance<MainViewVM>();
+ return TangoIOC.Default.GetInstance<BrowserViewVM>();
}
}
}