コード例 #1
0
ファイル: Detail.cshtml.cs プロジェクト: yidaibawang/abp
        public async void OnGet()
        {
            var blog = await _blogAppService.GetByShortNameAsync(BlogShortName);

            Post = await _postAppService.GetByUrlAsync(new GetPostInput { BlogId = blog.Id, Url = PostUrl });

            Blog = blog;
        }