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;
 }
Esempio n. 2
0
 public OrdersController(IOrderService orderService, IBusinessAreaService businessAreaService, ISupplierService supplierService, IOrderTypeService orderTypeService, IPurchasingDepartmentService purchasingDepartmentService, ICompanyService companyService, IFacilityService facilityService)
 {
     this.orderService                = orderService;
     this.businessAreaService         = businessAreaService;
     this.supplierService             = supplierService;
     this.orderTypeService            = orderTypeService;
     this.purchasingDepartmentService = purchasingDepartmentService;
     this.companyService              = companyService;
     this.facilityService             = facilityService;
 }
Esempio n. 3
0
 public OrderTypesController(IOrderTypeService orderTypeService)
 {
     this.orderTypeService = orderTypeService;
 }
Esempio n. 4
0
 static OrderTypeHelper()
 {
     service = IoC.Resolve <IOrderTypeService>("OrderTypeService");
 }
 static OrderTypeHelper()
 {
     service = IoC.Resolve<IOrderTypeService>("OrderTypeService");
 }