public bool Logon(string user, string password, ref int userID)
 {
     SecurityModule sm = new SecurityModule();
     return sm.Logon(user, password, ref userID);
 }
Example #2
0
        public bool Logon(string user, string password, ref int userID)
        {
            SecurityModule sm = new SecurityModule();

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