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