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