Exemple #1
0
        public void ApplyPriceDownloadAll()
        {
            this._logger.Debug("+++++ ApplyPriceDownloadAll start");

            var isNeedUpdate = true;

            var f5PriceList        = this._f5PriceParserService.ParseAndShow(isNeedUpdate);
            var ostatkiPriceList   = this._ostatkiPriceParserService.ParseAndShow(isNeedUpdate);
            var ugCatalogPriceList = this._yugCatalogPriceParserService.ParseAndShow(isNeedUpdate);
            var specialPriceList   = _specialPriceService.GetAll(isNeedUpdate).ToList();

            this._logger.Debug("----- ApplyPriceDownloadAll start");
        }
        public ActionResult ParseAndShowSpecialPrice()
        {
            var list = _specialPriceService.GetAll(true);

            return(Json(list));
        }