Esempio n. 1
0
 public WarehouseApiController(IProductRepository iProductRepository, IOrderRepository orderRepository, IOrderProductRepository orderProductRepository, IInventoryRepository inventoryRepository, IInventoryProductRepository inventoryProductRepository, IReportRepository reportRepository, IProductMovesRepository iProductMovesRepository)
 {
     _iProductRepository         = iProductRepository;
     _orderRepository            = orderRepository;
     _orderProductRepository     = orderProductRepository;
     _inventoryRepository        = inventoryRepository;
     _inventoryProductRepository = inventoryProductRepository;
     _reportRepository           = reportRepository;
     _productMovesRepository     = iProductMovesRepository;
 }
Esempio n. 2
0
 public InventoryService(IInventoryProductRepository inventoryProductRepository)
 {
     this.inventoryProductRepository = inventoryProductRepository;
 }
Esempio n. 3
0
 public InventoryService(IInventoryRepository inventoryRepository, IInventoryProductRepository inventoryProductRepository)
 {
     _inventoryRepository        = inventoryRepository;
     _inventoryProductRepository = inventoryProductRepository;
 }