コード例 #1
0
ファイル: NewsController.cs プロジェクト: Ptize/NewsPortal
        public async Task <Comment> GetComment([FromRoute] Guid newsId, [FromRoute] Guid userId)
        {
            var comment = await _commentBuilder.Get(newsId, userId);

            return(comment);
        }