public void UpdateBook(Book book) { _bookRepository.Update(book); }
public void AddNewBook(Book book) { _bookRepository.Add(book); }