Esempio n. 1
0
 public static void DeleteInstance()
 {
     if (instance != null)
     {
         instance = null;
     }
 }
Esempio n. 2
0
        public static ConecctionModel GetInstance()
        {
            if (instance == null)
            {
                instance = new ConecctionModel();
            }

            return(instance);
        }