コード例 #1
0
 public List <BlogPostModel> GetAllBlogPosts()
 {
     return(blogPostService.GetAllBlogPosts());
 }
コード例 #2
0
ファイル: Blog.razor.cs プロジェクト: gstew45/gregstewartdev
        protected override async Task OnInitializedAsync()
        {
            await base.OnInitializedAsync();

            ViewModel = await BlogPostService.GetAllBlogPosts();
        }