Exemple #1
0
        /// Set Account Password From UserName
        public static void SetAccountPassword(string username, string password)
        {
            AccountsTable table = new AccountsTable();

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

            table.SetPassword(id, password);
            table.Dispose();
        }
 /// 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();
 }