Ejemplo n.º 1
0
 public DataExportTask(
     IDataExporter exporter,
     IExportProfileService exportProfileService)
 {
     _exporter             = exporter;
     _exportProfileService = exportProfileService;
 }
 public ShopConnectorPlugin(
     ICommonServices services,
     IExportProfileService exportProfileService)
 {
     _services             = services;
     _exportProfileService = exportProfileService;
 }
		public FeedGoogleMerchantCenterController(
			IGoogleFeedService googleFeedService,
			AdminAreaSettings adminAreaSettings,
			IExportProfileService exportService)
		{
			_googleFeedService = googleFeedService;
			_adminAreaSettings = adminAreaSettings;
			_exportService = exportService;
		}
Ejemplo n.º 4
0
 public GoogleMerchantCenterFeedPlugin(
     IGoogleFeedService googleFeedService,
     ICommonServices services,
     IExportProfileService exportProfileService)
 {
     _googleFeedService    = googleFeedService;
     _services             = services;
     _exportProfileService = exportProfileService;
 }
Ejemplo n.º 5
0
 public ExportController(
     SmartDbContext db,
     IExportProfileService exportProfileService,
     ICategoryService categoryService,
     IDataExporter dataExporter,
     ITaskScheduler taskScheduler,
     IProviderManager providerManager,
     ITaskStore taskStore,
     DataExchangeSettings dataExchangeSettings,
     CustomerSettings customerSettings)
 {
     _db = db;
     _exportProfileService = exportProfileService;
     _categoryService      = categoryService;
     _dataExporter         = dataExporter;
     _taskScheduler        = taskScheduler;
     _providerManager      = providerManager;
     _taskStore            = taskStore;
     _dataExchangeSettings = dataExchangeSettings;
     _customerSettings     = customerSettings;
 }