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")); }