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