Пример #1
0
 public bool UserExist(string userName, string password)
 {
     try
     {
         return(_da.UserExist(userName.ToUpper(), password));
     }
     catch
     {
         throw;
     }
 }