示例#1
0
 public YandexMarketSpecImportController(
     IYandexMarketSpecService yandexMarketSpecService,
     IYandexMarketCategoryService yandexMarketCategoryService,
     ISpecificationAttributeService2 specificationAttributeService,
     ILogger logger)
 {
     _yandexMarketSpecService       = yandexMarketSpecService;
     _yandexMarketCategoryService   = yandexMarketCategoryService;
     _specificationAttributeService = specificationAttributeService;
     _logger = logger;
 }
 public YandexMarketProductController(IYandexMarketProductService yandexMarketProductService,
                                      IProductService productService,
                                      IUrlRecordService urlRecordService,
                                      ICategoryService categoryService,
                                      IPictureService pictureService,
                                      ISpecificationAttributeService2 specificationAttributeService,
                                      IYandexMarketCategoryService yandexMarketCategoryService,
                                      ILogger logger,
                                      SeoSettings seoSettings,
                                      IPriceManagerService priceManagerService)
 {
     _yandexMarketProductService    = yandexMarketProductService;
     _productService                = productService;
     _urlRecordService              = urlRecordService;
     _categoryService               = categoryService;
     _pictureService                = pictureService;
     _specificationAttributeService = specificationAttributeService;
     _yandexMarketCategoryService   = yandexMarketCategoryService;
     _logger              = logger;
     _seoSettings         = seoSettings;
     _priceManagerService = priceManagerService;
 }