int index = customersPersistentData.getCustomerIndexByCardNumber(cardNumber);
this.customers.get(index).buyAudioRecord(recordBought);
ArrayList<Customer> updatedCustomers = new ArrayList<Customer>(customers);
customersPersistentData.updateAll(updatedCustomers);
customersPersistentData.save();
}
/* Apumetodit tietovaraston tilan oäivittämiseen, nämä on vain siirretty muista ohjaimista tänne*/
public void updateBooksPersistentStore(){