コード例 #1
0
        public async Task <IActionResult> GetPostCommentAsync(string postId, int skip, int limit)
        {
            var result = await _service.GetPostCommentsAsync(postId, skip, limit);

            return(Ok(result));
        }