コード例 #1
0
 public ImportBillController(
     IImportBillService importBillService,
     IImportBillDetailService importBillDetailService,
     IProductService productService)
 {
     this._importBillService       = importBillService;
     this._importBillDetailService = importBillDetailService;
     this._productService          = productService;
 }
コード例 #2
0
 public ImportBillController(
     IImportBillService importBillService,
     IUriService uriService,
     IMapper mapper,
     IOptions <AppSettings> appSettings,
     IWebHostEnvironment env
     )
 {
     _importBillService = importBillService;
     _uriService        = uriService;
     _mapper            = mapper;
     _appSettings       = appSettings;
     _env = env;
 }