Exemplo n.º 1
0
        public ActionResult Post(int id = 1)
        {
            var model = new BlogViewModel.PostModel()
            {
                Post = service.GetPostById(id)
            };

            return(View(model));
        }
Exemplo n.º 2
0
 public ActionResult Post(int id = 1)
 {
     var model = new BlogViewModel.PostModel() {Post = service.GetPostById(id)};
     return View(model);
 }