public int updateCategory(CategoryDTO category)
 {
     return 1;
 }
 public int insertCategory(CategoryDTO category)
 {
     return 1;
 }
 public int deleteCategory(CategoryDTO category)
 {
     return 1;
 }
 public int updateCategory(CategoryDTO category)
 {
     CategoryDAO dao = new CategoryDAO();
     return dao.updateCategory(category);
 }
 public int insertCategory(CategoryDTO category)
 {
     CategoryDAO dao = new CategoryDAO();
     return dao.insertCategory(category);
 }
 public int deleteCategory(CategoryDTO category)
 {
     CategoryDAO dao = new CategoryDAO();
     return dao.deleteCategory(category);
 }