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