Пример #1
0
 public ShipmentService(
     ITestProductCategoryService testProductCategoryService,
     ITestOrderProductService testOrderProductService)
 {
     _testProductCategoryService = testProductCategoryService;
     _testOrderProductService    = testOrderProductService;
 }
Пример #2
0
 public OrdersController(ITestOrderProductService testOrderProductService,
                         ITestOrderService testOrderService,
                         IShipmentService shipmentService)
 {
     _testOrderProductService = testOrderProductService;
     _testOrderService        = testOrderService;
     _shipmentService         = shipmentService;
 }