コード例 #1
0
ファイル: CommentsController.cs プロジェクト: mdarul/TMS
        public IActionResult GetComment(int commentId)
        {
            var comment = _repo.GetComment(commentId);

            if (comment == null)
            {
                return(NotFound());
            }

            return(Ok(ModelsMapping.GetCommentDto(comment)));
        }