コード例 #1
0
 public bool UpdateAuthor(Author author)
 {
     AuthorHandler myHandler = new AuthorHandler(); return myHandler.UpdateAuthor(author);
 }
コード例 #2
0
 public List<Author> GetAuthors()
 {
     AuthorHandler myHandler = new AuthorHandler(); return myHandler.GetAuthorList();
 }
コード例 #3
0
 public List<Author> GetAuthorsPerBook(int BookID)
 {
     AuthorHandler myHandler = new AuthorHandler(); return myHandler.GetAuthorsPerBook(BookID);
 }
コード例 #4
0
 public Author GetAuthorDetails(int AuthorID)
 {
     AuthorHandler myHandler = new AuthorHandler(); return myHandler.GetAuthorDetails(AuthorID);
 }
コード例 #5
0
 public bool DeleteAuthor(int AuthorID)
 {
     AuthorHandler myHandler = new AuthorHandler(); return myHandler.DeleteAuthor(AuthorID);
 }
コード例 #6
0
 public bool AddAuthor(Author author)
 {
     AuthorHandler myHandler = new AuthorHandler();
     return myHandler.InsertAthor(author);
 }
コード例 #7
0
 public List<Author> CheckDuplicatedAuthor(string name, string surname)
 {
     AuthorHandler myHandler = new AuthorHandler(); return myHandler.CheckDuplicateAuthor(name, surname);
 }
コード例 #8
0
 public List<Author> AuthorGlobalSearch(string query)
 {
     AuthorHandler myHandler = new AuthorHandler(); return myHandler.AuthorGlobalSearch(query);
 }