public BookDetails(String bookId, String surname, String firstName, String title, float price, int year, String description)
this.bookId = bookId;
this.title = title;
this.firstName = firstName;
this.surname = surname;
this.price = price;
this.year = year;
this.description = description;
|