customersPersistentData.save();
}
public void setBookReturned(Book returningBook){
int bookIndex = this.getBooks().indexOf(returningBook);
Book bookTitle = this.getBooks().get(bookIndex);
bookTitle.incrementUnitsAvailable();
this.updateBooksPersistentStore();
}