コード例 #1
0
 public int updateCategory(CategoryDTO category)
 {
     return 1;
 }
コード例 #2
0
 public int insertCategory(CategoryDTO category)
 {
     return 1;
 }
コード例 #3
0
 public int deleteCategory(CategoryDTO category)
 {
     return 1;
 }
コード例 #4
0
 public int updateCategory(CategoryDTO category)
 {
     CategoryDAO dao = new CategoryDAO();
     return dao.updateCategory(category);
 }
コード例 #5
0
 public int insertCategory(CategoryDTO category)
 {
     CategoryDAO dao = new CategoryDAO();
     return dao.insertCategory(category);
 }
コード例 #6
0
 public int deleteCategory(CategoryDTO category)
 {
     CategoryDAO dao = new CategoryDAO();
     return dao.deleteCategory(category);
 }