public BookListService(BookListStorage bookListStorage, ILogger logger)
 {
     _bookStorage = bookListStorage;
     _books       = bookListStorage.GetAll();
     _logger      = logger;
 }
예제 #2
0
 public BookListService(BookListStorage bookListStorage)
 {
     _bookStorage = bookListStorage;
     _books       = bookListStorage.GetAll();
 }