Beispiel #1
0
 public int Create(int postId, Comment comment)
 {
     return(_postWriter.CreateComment(postId, comment));
 }
Beispiel #2
0
 public ActionResult Create(int postId, Comment comment)
 {
     _postWriter.CreateComment(postId, comment);
     return(RedirectToAction("Get", "Post", new{ Id = postId }));
 }