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