/// Set Account Password From UserName public static void SetAccountPassword(string username, string password) { AccountsTable table = new AccountsTable(); table.SetPassword(username, password); table.Dispose(); }
/// Set Account Password From User Id public static void SetAccountPassword(int id, string password) { AccountsTable table = new AccountsTable(); table.SetPassword(id, password); table.Dispose(); }