public bool CheckAttempt(string cardNo)
 {
     if (cardDal.GetAttempt(cardNo) >= 0 && cardDal.GetAttempt(cardNo) < 3)
     {
         return(true);
     }
     else if (cardDal.GetAttempt(cardNo) == -1 || cardDal.GetAttempt(cardNo) == 3)
     {
         return(false);
     }
     return(true);
 }