예제 #1
0
        public async Task <CommentsListVM> GetCommentsUser([FromRoute] Guid userId, [FromRoute] int count, [FromRoute] int page)
        {
            var comments = await _commentBuilder.GetCommentsUser(userId, count, page);

            return(comments);
        }