public YandexMarketProductService(
     ICacheManager cacheManager,
     IRepository2 <YandexMarketProductRecord> productRepository,
     IYandexMarketCategoryService yandexMarketCategoryService,
     IProductService productService,
     IYugCatalogPriceParserService yugCatalogPriceParserService)
 {
     this._cacheManager                = cacheManager;
     this._productRepository           = productRepository;
     this._yandexMarketCategoryService = yandexMarketCategoryService;
     this._productService              = productService;
     _yugCatalogPriceParserService     = yugCatalogPriceParserService;
 }
Example #2
0
 public PriceManagerService(IProductService productService,
                            ILogger logger,
                            IOstatkiPriceParserService ugContractPriceParserService,
                            IF5PriceParserService f5PriceParserService,
                            IYugCatalogPriceParserService yugCatalogPriceParserService,
                            ISpecialPriceService specialPriceService)
 {
     this._productService               = productService;
     this._logger                       = logger;
     this._ostatkiPriceParserService    = ugContractPriceParserService;
     this._f5PriceParserService         = f5PriceParserService;
     this._yugCatalogPriceParserService = yugCatalogPriceParserService;
     _specialPriceService               = specialPriceService;
 }
 public OstatkiFileParserController(
     IProductService productService,
     ILogger logger,
     IOstatkiPriceParserService ugContractPriceParserService,
     IPriceManagerService priceManagerService,
     IYugCatalogPriceParserService yugCatalogPriceParserService,
     ISpecialPriceService specialPriceService)
 {
     _productService               = productService;
     _logger                       = logger;
     _ostatkiPriceParserService    = ugContractPriceParserService;
     _yugCatalogPriceParserService = yugCatalogPriceParserService;
     _priceManagerService          = priceManagerService;
     _specialPriceService          = specialPriceService;
 }