Esempio n. 1
0
 public override void Register(Customer customer)
 {
     if (_checkService.CustomerCheckCardNo(customer))
     {
         base.Register(customer);
     }
     else
     {
         throw new Exception("Invalid Card Number!");
     }
 }