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