Example #1
0
 /// Get Account Password From User ID
 public static string AccountPassword(int id)
 {
     AccountsTable table = new AccountsTable();
     string password = table.GetPassword(id);
     table.Dispose();
     return(password);
 }
Example #2
0
        /// Get Account Password From UserName
        public static string AccountPassword(string username)
        {
            AccountsTable table    = new AccountsTable();
            string        password = table.GetPassword(username);

            table.Dispose();
            return(password);
        }
Example #3
0
        /// Get Account Password From User ID
        public static string AccountPassword(int id)
        {
            AccountsTable table    = new AccountsTable();
            string        password = table.GetPassword(id);

            table.Dispose();
            return(password);
        }
Example #4
0
 /// Get Account Password From UserName
 public static string AccountPassword(string username)
 {
     AccountsTable table = new AccountsTable();
     string password = table.GetPassword(username);
     table.Dispose();
     return(password);
 }