예제 #1
0
 private void InitializeDBUserClass()
 {
     _dbConrol = new DBUsersHandler.DBUsersHandler();
     try
     {
         _dbConrol.TryConnection();
     }
     catch (Exception e)
     {
         MessageBox.Show($"Trouble with DB\n{e.Message}");
         throw e;
     }
 }