Beispiel #1
0
        public async Task <List <ItemCommentModel> > GetCommentList(List <long> ids)
        {
            var comments = await _hackerNewsService.GetComments(ids);

            await storyCommentsRepository.Insert(comments);

            return(comments);
        }