コード例 #1
0
 public SectionSyncProcessor(IRemoteRepository remoteRepository, IStoreSyncProcessor storeSyncProcessor, IChannelMapper channelMapper)
 {
     _remoteRepository   = remoteRepository;
     _storeSyncProcessor = storeSyncProcessor;
 }
コード例 #2
0
 public ProductSyncProcessor(ICategorySyncProcessor categorySyncProcessor, IBrandSyncProcessor brandSyncProcessor, IStoreSyncProcessor storeSyncProcessor, ISectionSyncProcessor sectionSyncProcessor, IChannelMapper channelMapper)
 {
     _categorySyncProcessor = categorySyncProcessor;
     _brandSyncProcessor    = brandSyncProcessor;
     _sectionSyncProcessor  = sectionSyncProcessor;
     _channelMapper         = channelMapper;
 }