Ejemplo n.º 1
0
        public ActionResult Edit(int commentId)
        {
            CommentDao cDao    = new CommentDao();
            Comment    comment = cDao.GetById(commentId);

            return(View(comment));
        }