コード例 #1
0
 public AcUserInfoController(IAcUserinfoService IAcUserinfoService, IAcStaffService IAcStaffService, IAcRoleService IAcRoleService, IMapper mapper)
 {
     this._IAcStaffServicee   = IAcStaffService;
     this._IAcRoleServicee    = IAcRoleService;
     this._IAcUserinfoService = IAcUserinfoService;
     this._mapper             = mapper;
 }
コード例 #2
0
 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;
 }
コード例 #3
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;
        }
コード例 #4
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;
 }
コード例 #5
0
        public SaleManagementController(
            ILogger <SaleManagementController> logger,

            ISlSaleOrderService ISlSaleOrderService,
            IPrProductService IPrProductService,
            IAcDepartmentService IAcDepartmentService,
            IAcStaffService IAcStaffService,
            ISlOrderService ISlOrderService,
            ISlCustomerService ISlCustomerService,
            IPrProductCategoryService IPrProductCategoryService,
            IServiceProvider service,

            IPuCommodityCategoryService puCommodityCategoryService,
            IPuOrderService IpuOrderService,
            IPuCommodityServicce IpuCommodityServicce,

            IMapper IMapper,
            IHttpContextAccessor httpContextAccessor
            )
        {
            _logger = logger;

            _ISlSaleOrderService       = ISlSaleOrderService;
            _IPrProductService         = IPrProductService;
            _IAcDepartmentService      = IAcDepartmentService;
            _IAcStaffService           = IAcStaffService;
            _ISlOrderService           = ISlOrderService;
            _ISlCustomerService        = ISlCustomerService;
            _IPrProductCategoryService = IPrProductCategoryService;
            _service = service;

            _IpuOrderService            = IpuOrderService;
            _puCommodityCategoryService = puCommodityCategoryService;
            _IpuCommodityServicce       = IpuCommodityServicce;

            _IMapper     = IMapper;
            _httpContext = httpContextAccessor;
        }
コード例 #6
0
 public AcSalaryManagementController(IAcSalaryService IAcSalaryService, IAcStaffService IAcStaffService, IMapper mapper)
 {
     this._IAcStaffService  = IAcStaffService;
     this._IAcSalaryService = IAcSalaryService;
     this._mapper           = mapper;
 }
コード例 #7
0
 public StaffManagementController(IAcStaffService IAcStaffService, IMapper mapper, IAcDepartmentService acDepartmentService)
 {
     this._IAcStaffService = IAcStaffService;
     this._mapper          = mapper;
     _IAcDepartmentService = acDepartmentService;
 }