public BookListService(BookListStorage bookListStorage, ILogger logger)
 {
     _bookStorage = bookListStorage;
     _books       = bookListStorage.GetAll();
     _logger      = logger;
 }
Exemplo n.º 2
0
 public BookListService(BookListStorage bookListStorage)
 {
     _bookStorage = bookListStorage;
     _books       = bookListStorage.GetAll();
 }