Пример #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);
 }