Exemplo n.º 1
0
        public ActionResult EditPost(BlogPost editedPost)
        {
            var ops = new BlogPostOperations();

            ops.EditPost(editedPost);

            return(RedirectToAction("Index", "Home"));
        }