public BookListService(BookListStorage bookListStorage, ILogger logger) { _bookStorage = bookListStorage; _books = bookListStorage.GetAll(); _logger = logger; }
public BookListService(BookListStorage bookListStorage) { _bookStorage = bookListStorage; _books = bookListStorage.GetAll(); }