예제 #1
0
        /// Remove Account From Id
        public static void RemoveAccount(string username)
        {
            AccountsTable table = new AccountsTable();

            table.Remove(username);
            table.Dispose();
        }
예제 #2
0
        /// Remove Account From Id
        public static void RemoveAccount(int id)
        {
            AccountsTable table = new AccountsTable();

            table.Remove(id);
            table.Dispose();
        }
예제 #3
0
 /// Remove Account From Id
 public static void RemoveAccount(string username)
 {
     AccountsTable table = new AccountsTable();
     table.Remove(username);
     table.Dispose();
 }
예제 #4
0
 /// Remove Account From Id
 public static void RemoveAccount(int id)
 {
     AccountsTable table = new AccountsTable();
     table.Remove(id);
     table.Dispose();
 }