Ejemplo n.º 1
0
        public ActionResult Index()
        {
            //view model
            var model = new BlogViewModel.IndexModel {
                Posts = service.Posts
            };

            return(View(model));
        }
Ejemplo n.º 2
0
 public ActionResult Index()
 {
     //view model
     var model = new BlogViewModel.IndexModel { Posts = service.Posts };
     return View(model);
 }