public async void OnGet() { var blog = await _blogAppService.GetByShortNameAsync(BlogShortName); Post = await _postAppService.GetByTitleAsync(new GetPostInput { BlogId = blog.Id, Title = PostTitle }); Blog = blog; }