示例#1
0
        public async void OnGet()
        {
            var blog = await _blogAppService.GetByShortNameAsync(BlogShortName);

            Post = await _postAppService.GetByTitleAsync(new GetPostInput { BlogId = blog.Id, Title = PostTitle });

            Blog = blog;
        }