public SectionSyncProcessor(IRemoteRepository remoteRepository, IStoreSyncProcessor storeSyncProcessor, IChannelMapper channelMapper)
 {
     _remoteRepository   = remoteRepository;
     _storeSyncProcessor = storeSyncProcessor;
 }
Esempio n. 2
0
 public ProductSyncProcessor(ICategorySyncProcessor categorySyncProcessor, IBrandSyncProcessor brandSyncProcessor, IStoreSyncProcessor storeSyncProcessor, ISectionSyncProcessor sectionSyncProcessor, IChannelMapper channelMapper)
 {
     _categorySyncProcessor = categorySyncProcessor;
     _brandSyncProcessor    = brandSyncProcessor;
     _sectionSyncProcessor  = sectionSyncProcessor;
     _channelMapper         = channelMapper;
 }