public ProductionManagementController(
     ILogger <ProductionManagementController> logger,
     IPrProductTaskService IPrProductTaskService,
     IPrProductService IPrProductService,
     IAcDepartmentService IAcDepartmentService,
     IPuCommodityServicce IPuCommodityServicce,
     IIcProductRecordService IIcProductRecordService,
     IPrProductMaterialService IPrProductMaterialService,
     IAcStaffService IAcStaffService,
     IServiceProvider service,
     ISlOrderService ISlOrderService,
     IMapper IMapper,
     IHttpContextAccessor httpContextAccessor
     )
 {
     _logger = logger;
     _IPrProductTaskService     = IPrProductTaskService;
     _IPrProductService         = IPrProductService;
     _IIcProductRecordService   = IIcProductRecordService;
     _IAcDepartmentService      = IAcDepartmentService;
     _ISlOrderService           = ISlOrderService;
     _IPuCommodityServicce      = IPuCommodityServicce;
     _IPrProductMaterialService = IPrProductMaterialService;
     _IAcStaffService           = IAcStaffService;
     _service     = service;
     _IMapper     = IMapper;
     _httpContext = httpContextAccessor;
 }
Example #2
0
        public QualityManagementController(
            ILogger <QualityManagementController> logger,

            ISlSaleOrderService ISlSaleOrderService,
            IPrProductService IPrProductService,
            IAcDepartmentService IAcDepartmentService,
            IAcStaffService IAcStaffService,
            IPuOrderService IPuOrderService,
            IQmCommodityService IQmCommodityService,
            IPrProductTaskService IPrProductTaskService,
            IQmProductService IQmProductService,
            IPuCommodityServicce IPuCommodityService,
            IServiceProvider service,

            IMapper IMapper,
            IHttpContextAccessor httpContextAccessor
            )
        {
            _logger = logger;

            _ISlSaleOrderService   = ISlSaleOrderService;
            _IPrProductService     = IPrProductService;
            _IAcDepartmentService  = IAcDepartmentService;
            _IAcStaffService       = IAcStaffService;
            _IPuOrderService       = IPuOrderService;
            _IQmCommodityService   = IQmCommodityService;
            _IPrProductTaskService = IPrProductTaskService;
            _IQmProductService     = IQmProductService;
            _IPuCommodityService   = IPuCommodityService;
            _service = service;

            _IMapper     = IMapper;
            _httpContext = httpContextAccessor;
        }
Example #3
0
 public ProductInventoryInfoController(
     IPrProductService ProductService,
     IIcProductRecordService IcProductRecordService,
     IPrProductTaskService PrProductTaskService,
     IAcUserinfoService AcUserinfoService,
     IHttpContextAccessor httpContextAccessor,
     IAcStaffService AcStaffService,
     ISlOrderService SlOrderService,
     IAcDepartmentService AcDepartmentService,
     IMapper mapper
     )
 {
     _IAcStaffService         = AcStaffService;
     _IAcUserinfoService      = AcUserinfoService;
     _httpContext             = httpContextAccessor;
     _IIcProductRecordService = IcProductRecordService;
     _IPrProductService       = ProductService;
     _IPrProductTaskService   = PrProductTaskService;
     _ISlOrderService         = SlOrderService;
     _IAcDepartmentService    = AcDepartmentService;
     this._mapper             = mapper;
 }