Exemple #1
0
 public bool Get(string username, string password)
 {
     try
     {
         if (bl.checkingadminlogin(username, password) == true)
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
     catch (Exception e)
     {
         return(false);
     }
 }