示例#1
0
 public bool ValidateUser(string userName, string password)
 {
     using (var sl = new SystemLogic())
     {
         return(sl.AuthenticateUser(userName, password));
     }
 }