Exemplo n.º 1
0
 public OnlineOrder(Cart cart, PaymentDetails paymentDetails)
     : base(cart)
 {
     _paymentDetails = paymentDetails;
     _paymentProcessor = new PaymentProcessor();
     _reservationService = new ReservationService();
     _notificationService = new NotificationService();
 }
Exemplo n.º 2
0
 protected Order(Cart cart)
 {
     _cart = cart;
 }
Exemplo n.º 3
0
 public PoSCreditOrder(Cart cart, PaymentDetails paymentDetails)
     : base(cart)
 {
     _paymentDetails = paymentDetails;
     _paymentProcessor = new PaymentProcessor();
 }
Exemplo n.º 4
0
 public void NotifyCustomerOrderCreated(Cart cart)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 5
0
 public PoSCashOrder(Cart cart)
     : base(cart)
 {
 }