Пример #1
0
 public MaterialInputsController(IMaterialInputService materialInputService, IOrderTypeService orderTypeService, IOrderService orderService, IMaterialService materialService, ISupplierService supplierService, IStockLocationService stockLocationService)
 {
     this.materialInputService = materialInputService;
     this.orderTypeService     = orderTypeService;
     this.orderService         = orderService;
     this.materialService      = materialService;
     this.supplierService      = supplierService;
     this.stockLocationService = stockLocationService;
 }
Пример #2
0
 public StockLocationsController(IStockLocationService stockLocationService, ICompanyService companyService, IFacilityService facilityService)
 {
     this.stockLocationService = stockLocationService;
     this.companyService       = companyService;
     this.facilityService      = facilityService;
 }