コード例 #1
0
        public ActionResult LeaveCommentToGame(Comment comment, string gameKey)
        {
            _commentManager.AddCommentToGame(comment, gameKey);

            return(RedirectToAction("GetAllCommentsByGameKey", "Comment", gameKey));
        }