Exemple #1
0
 public void AddBook(string ISBN, string title, Author author)
 {
     bookRepository.AddBook(Book.CreateBook(ISBN, title, author));
 }
Exemple #2
0
 public void AddBook(string title, string isbn, string authorFirstName, string authorSecondName)
 {
     bookRepository.AddBook(new Book(title, isbn, authorFirstName, authorSecondName));
 }