// }}
@Override
public void install() {
getLOGGER().debug("installing");
final Country countryGBR = getCountryRepository().findByCode("GBR");
getCustomerRepository().newCustomer("Richard", "Pawson", 1, countryGBR);
getCustomerRepository().newCustomer("Robert", "Matthews", 2, countryGBR);
getCustomerRepository().newCustomer("Dan", "Haywood", 3, countryGBR);
getCustomerRepository().newCustomer("Stef", "Cascarini", 4, countryGBR);
getCustomerRepository().newCustomer("Dave", "Slaughter", 5, countryGBR);