VideoRentalService.RentalService.Logon C# (CSharp) Method

Logon() public method

public Logon ( string user, string password, int &userID ) : bool
user string
password string
userID int
return bool
        public bool Logon(string user, string password, ref int userID)
        {
            SecurityModule sm = new SecurityModule();
            return sm.Logon(user, password, ref userID);
        }