public ActionResult ContentPages()
    {
      var grid = new ContentPagesGrid(_contentPageService.Queryable().OrderByDescending(x => x.Created));

      var model = new ContentPageModel()
      {
        Grid = grid
      };

      return View(model);
    }
Ejemplo n.º 2
0
        public ActionResult ContentPages()
        {
            var grid = new ContentPagesGrid(_contentPageService.Queryable().OrderByDescending(x => x.Created));

            var model = new ContentPageModel()
            {
                Grid = grid
            };

            return View(model);
        }