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