Esempio n. 1
0
 public static void StartDB(string connection)
 {
     if (DBContext == null)
     {
         DBContext = new KyersSoftWareMSSQLBaseEntity(connection);
         DBContext.Connect();
     }
 }
Esempio n. 2
0
 public static void StopDB()
 {
     DBContext = null;
 }