示例#1
0
        public ActionResult GetBanner(long productCategoryId)
        {
            var banner = _productCategoriesService.GetBanner(productCategoryId.ToString(CultureInfo.InvariantCulture));

            if (banner == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.NoContent));
            }

            return(Content(banner.BannerHtml, "text/html"));
        }