Exemplo n.º 1
0
        public ActionResult Contents(string virtualCategoryId)
        {
            var staticContents = _staticContentService.GetStaticContents(virtualCategoryId, (int)Status.Enable);

            if (staticContents == null)
            {
                return HttpNotFound();
            }

            staticContents = staticContents.Select(x => x.ToModel());

            return PartialView(staticContents);
        }