Exemple #1
0
 public ProductListBaseConsoleService(ProductBaseConsoleService productConsoleService,
                                      ICrudConsoleService <Product> crudProductService,
                                      ProductListPrintConsoleService printProductService,
                                      ProductManager productManager)
 {
     _productConsoleService = productConsoleService;
     _crudProductService    = crudProductService;
     _printProductService   = printProductService;
     _productManager        = productManager;
 }
 public OrderBaseConsoleService(OrderManager orderManager,
                                BuyerManager buyerManager,
                                ProductBaseConsoleService productConsoleService,
                                OrderPrintConsoleService printOrderService)
 {
     _orderManager          = orderManager;
     _buyerManager          = buyerManager;
     _productConsoleService = productConsoleService;
     _printOrderService     = printOrderService;
 }