コード例 #1
0
ファイル: BlogManager.cs プロジェクト: msekinci/BasicBlog
 public async Task <List <Blog> > GetAllByCategoryId(int categoryId)
 {
     return(await _blogDAL.GetAllByCategoryId(categoryId));
 }