public CompanyProductBarcodeService(IUnitOfWork uow, ILogger <ICompanyProductBarcodeService> logger,
                                     ICsvService <ImportCompanyProductBarcodeDto> importCompanyProductBarcodeCsvService, ICompanyProductService companyProductService,
                                     ISupplierService supplierService, ICompanyService companyService) : base(uow, logger)
 {
     SupplierService       = supplierService;
     CompanyService        = companyService;
     CompanyProductService = companyProductService;
     ImportCompanyProductBarcodeCsvService = importCompanyProductBarcodeCsvService;
 }
Пример #2
0
 public Import(ICompanyProductService companyProductService, IConfiguration config, ILogger <Import> logger)
 {
     CompanyProductService = companyProductService;
     Config = config;
     Logger = logger;
 }