Esempio n. 1
0
        public async Task OnGetAsync()
        {
            var blog = await _blogAppService.GetByShortNameAsync(BlogShortName);

            Posts       = (await _postAppService.GetListByBlogId(blog.Id)).Items;
            PopularTags = (await _tagAppService.GetPopularTags(new GetPopularTagsInput {
                ResultCount = 10
            }));
        }