示例#1
0
        public async Task <Comment> GetComment([FromRoute] Guid newsId, [FromRoute] Guid userId)
        {
            var comment = await _commentBuilder.Get(newsId, userId);

            return(comment);
        }