Exemplo n.º 1
0
 public void ProcessCreditCard(PaymentDetails paymentDetails, decimal amount)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public PoSCreditOrder(Cart cart, PaymentDetails paymentDetails)
     : base(cart)
 {
     this.paymentDetails   = paymentDetails;
     this.paymentProcessor = new PaymentProcessor();
 }