Esempio n. 1
0
 public SyncProductGroupMappingService(
     ILogging log,
     IGenerateUpdateProperties generateIgnoreList,
     IMasterGroupMappingRepository masterGroupMappingRepo,
     IMagentoProductGroupSettingRepository magentoSettingRepo
     )
 {
     this.log = log;
     this.generateIgnoreList     = generateIgnoreList;
     this.magentoSettingRepo     = magentoSettingRepo;
     this.masterGroupMappingRepo = masterGroupMappingRepo;
 }
 public ProcessImportService(
     ILogging log,
     IConnectorRepository connectorRepo,
     IProductGroupRepository productGroupRepo,
     IMasterGroupMappingRepository masterGroupMappingRepo,
     IProductGroupMappingRepository productGroupMappingRepo,
     IMagentoProductGroupSettingRepository magentoSettingRepo
     )
 {
     this.log                     = log;
     this.connectorRepo           = connectorRepo;
     this.productGroupRepo        = productGroupRepo;
     this.masterGroupMappingRepo  = masterGroupMappingRepo;
     this.productGroupMappingRepo = productGroupMappingRepo;
     this.magentoSettingRepo      = magentoSettingRepo;
 }