Exemplo n.º 1
0
 public PoSCreditOrder(Cart cart, PaymentDetails paymentDetails)
     : base(cart)
 {
     this.paymentDetails = paymentDetails;
     this.paymentProcessor = new PaymentProcessor();
 }
Exemplo n.º 2
0
 protected Order(Cart cart)
 {
     this.cart = cart;
 }
Exemplo n.º 3
0
 public PoSCashOrder(Cart cart)
     : base(cart)
 {
 }
Exemplo n.º 4
0
 public void NotifyCustomerOrderCreated(Cart cart)
 {
     throw new NotImplementedException();
 }