Exemplo n.º 1
0
 private async Task<CommentModel> MapAsync(Comment entity)
 {
     var model = entity.Map<CommentModel>();
     var preview = await _commentLinkPreviewService.GetCommentsLinkPreviewAsync(entity.Id);
     model.LinkPreview = preview;
     return model;
 }