public OrderCreationMediator()
 {
     _productSelectionStep  = new ProductSelectionStep(this);
     _quantitySelectionStep = new QuantitySelectionStep(this);
     _orderPlacementStep    = new OrderPlacementStep(this);
 }
Exemplo n.º 2
0
 public OrderEditMediator()
 {
     _productSelectionStep = new ProductSelectionStep(this);
     _orderPlacementStep   = new OrderPlacementStep(this);
 }