コード例 #1
0
 public ShopifyImportService(
     IShopifyRepository shopifyRepository,
     IShopifyConverter shopifyConverter,
     IPushNotificationManager notifier,
     IItemService productService,
     ICategoryService categoryService,
     ICatalogSearchService searchService,
     IPricingService pricingService,
     IPropertyService propertyService,
     Func <IContentBlobStorageProvider> contentStorageProviderFactory)
 {
     _shopifyRepository      = shopifyRepository;
     _shopifyConverter       = shopifyConverter;
     _notifier               = notifier;
     _productService         = productService;
     _categoryService        = categoryService;
     _searchService          = searchService;
     _pricingService         = pricingService;
     _propertyService        = propertyService;
     _contentStorageProvider = contentStorageProviderFactory();
 }
コード例 #2
0
 public ShopifyImportService(
     IShopifyRepository shopifyRepository,
     IShopifyConverter shopifyConverter,
     IPushNotificationManager notifier,
     IItemService productService,
     ICategoryService categoryService,
     ICatalogSearchService searchService,
     IThemeService themeService,
     IPricingService pricingService,
     IPropertyService propertyService,
     IPagesService pagesService)
 {
     _shopifyRepository = shopifyRepository;
     _shopifyConverter  = shopifyConverter;
     _notifier          = notifier;
     _productService    = productService;
     _categoryService   = categoryService;
     _searchService     = searchService;
     _themeService      = themeService;
     _pricingService    = pricingService;
     _propertyService   = propertyService;
     _pagesService      = pagesService;
 }