Beispiel #1
0
 public static void DeleteInstance()
 {
     if (instance != null)
     {
         instance = null;
     }
 }
Beispiel #2
0
 public static HomeMenuViewModel GetInstance()
 {
     if (instance == null)
     {
         instance = new HomeMenuViewModel();
     }
     return(instance);
 }