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