Esempio n. 1
0
 public bool InsertBookAuthor(BookAuthor bookAuthor)
 {
     BookAuthorHandler myHandler = new BookAuthorHandler(); return myHandler.InsertBookAuthor(bookAuthor);
 }
Esempio n. 2
0
 public bool DeleteBookAuthor(BookAuthor bookAuthor)
 {
     BookAuthorHandler myHandler = new BookAuthorHandler(); return myHandler.DeleteBookAuthor(bookAuthor);
 }
Esempio n. 3
0
 public List<BookAuthor> GetBookAuthors(int BookID)
 {
     BookAuthorHandler myHandler = new BookAuthorHandler(); return myHandler.GetBookAuthors(BookID);
 }
Esempio n. 4
0
 public bool BookAuthorUpdateDelete(int BookID)
 {
     BookAuthorHandler myHandler = new BookAuthorHandler(); return myHandler.DeleteUpdateBookAuthor(BookID);
 }