Esempio n. 1
0
 public ActionResult Edit(int id)
 {
     var commentService = new CommentService();
     Comment comment = commentService.GetCommentById(id);
     return View(comment);
 }