Exemplo n.º 1
0
 public static bool Login(Customer c)
 {
     if (CustomerDAL.CheckLogin(c).Count > 0)
     {
         return(true);
     }
     return(false);
 }