public bool UpdateBookType(BookCategory bookType)
 {
     BookCategoryHandler myHandler = new BookCategoryHandler(); return myHandler.UpdateBookCategory(bookType);
 }
 public List<BookCategory> GetBookCategoryList()
 {
     BookCategoryHandler myhandler = new BookCategoryHandler(); return myhandler.GetBookCategoryList();
 }
 public BookCategory GetBookType(int BookCategoryID)
 {
     BookCategoryHandler myhandler = new BookCategoryHandler(); return myhandler.GetBookCategory(BookCategoryID);
 }
 public BookCategory GetBookCategory(int CategoryID)
 {
     BookCategoryHandler myHandler = new BookCategoryHandler(); return myHandler.GetBookCategory(CategoryID);
 }
 public bool AddBookType(BookCategory bookType)
 {
     BookCategoryHandler myHander = new BookCategoryHandler();
     return myHander.InsertBookCategory(bookType);
 }
 public bool DeleteBookType(int BookCategoryID)
 {
     BookCategoryHandler myHandler = new BookCategoryHandler(); return myHandler.DeleteBookCategory(BookCategoryID);
 }
 public List<BookCategory> CheckDuplicatedBookCategory(string category)
 {
     BookCategoryHandler myHandler = new BookCategoryHandler(); return myHandler.CheckDuplicateBookCategory(category);
 }
 public List<BookCategory> BookCategoryGlobalSearch(string query)
 {
     BookCategoryHandler myHandler = new BookCategoryHandler(); return myHandler.BookCategoryGlobalSearch(query);
 }