public bool LostBook(Book book, int qt = 1) { for (int i = 0; i < qt; i++) { if (!book.LostBook()) { return false; } } return true; }