Logon() public method

public Logon ( string user, string password, int &userID ) : bool
user string
password string
userID int
return bool
Exemplo n.º 1
0
 public bool Logon(string user, string password, ref int userID)
 {
     SecurityModule sm = new SecurityModule();
     return sm.Logon(user, password, ref userID);
 }
Exemplo n.º 2
0
        public bool Logon(string user, string password, ref int userID)
        {
            SecurityModule sm = new SecurityModule();

            return(sm.Logon(user, password, ref userID));
        }