public static void DeleteInstance()
 {
     if (instance != null)
     {
         instance = null;
     }
 }
 public static AutoLookViewModel GetInstance()
 {
     if (instance == null)
     {
         instance = new AutoLookViewModel();
     }
     return(instance);
 }