public async Task <IEnumerable <SummaryLinkDto> > RecentPostLinks(int blogId, int page = 1, int size = 10)
        {
            var posts = await _blogApi.GetPostsByBlogId(blogId, page, size);

            return(posts.Select(x => new SummaryLinkDto
            {
                PostId = x.Id,
                Title = x.Title,
                Link = x.Url
            }));
        }