Ejemplo n.º 1
0
 private bool activateCard(string lastFourDigitsOfCard)
 {
     return(CardDAO.activateCard(lastFourDigitsOfCard));
 }
Ejemplo n.º 2
0
 private Boolean verifyCvvForCard(string lastFourDigitsOfCard, string cvv)
 {
     return(CardDAO.isValidCvvForCard(lastFourDigitsOfCard, cvv));
 }
Ejemplo n.º 3
0
 private Boolean verifySsnForCard(string lastFourDigitsOfCard, string cvv, string ssn)
 {
     return(CardDAO.isValidSsnForCard(lastFourDigitsOfCard, cvv, ssn));
 }
Ejemplo n.º 4
0
 private Boolean verifyCardNumber(string lastFourDigitsOfCard)
 {
     return(CardDAO.isValidCard(lastFourDigitsOfCard));
 }