Пример #1
0
 public static void DeleteInstance()
 {
     if (instance != null)
     {
         instance = null;
     }
 }
Пример #2
0
 public static BallotViewModel GetInstance()
 {
     if (instance == null)
     {
         instance = new BallotViewModel();
     }
     return(instance);
 }