コード例 #1
0
        private async Task <IEnumerable <CommentEntity> > GetComments(Guid photoId)
        {
            var comments = await _commentRepo.GetCommentsForPhotoAsync(photoId);

            return(comments);
        }