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