public Book GetBook(int id) { var book = _readerWriter.GetBook(id); if (book == null) { //lool return(null); } return(book); }