コード例 #1
0
ファイル: CommentController.cs プロジェクト: AsaVault/EarTube
        public IActionResult GetCommentById(int id)
        {
            var data = _comment.CommentById(id);

            return(View(data));
        }