コード例 #1
0
ファイル: BookManage.cs プロジェクト: foxZhong/smartken-kia
 public static List <Categorie> getAllCategories()
 {
     return(GenreService.getAllCategories());
 }
コード例 #2
0
ファイル: BookManage.cs プロジェクト: foxZhong/smartken-kia
 public static Categorie getCategorieById(int catid)
 {
     return(GenreService.getCategoriesById(catid));
 }
コード例 #3
0
ファイル: BookManage.cs プロジェクト: foxZhong/smartken-kia
 public static Genre getGenreById(int genid)
 {
     return(GenreService.getGenresById(genid));
 }
コード例 #4
0
ファイル: BookManage.cs プロジェクト: foxZhong/smartken-kia
 public static List <Genre> getGenresByCatId(int catid)
 {
     return(GenreService.getGenresByCatId(catid));
 }