public IActionResult LoanBook(Guid readerId, Guid bookId)
        {
            _readerService.LoanBook(readerId, bookId);

            LoanBookViewModel model = _readerService.GetReaderWithLoanedBooks(readerId);

            return(View(model));
        }