Exemplo n.º 1
0
        //
        // GET: /Posts/
        public ActionResult Index()
        {
            var postManager=new PostManager();

            var model = new IndexModel();

            model.Posts = postManager.GetAllPosts();

            return View(model);
        }