public FrequentFlyerBuilder(String frequentFlyerNumber) {
this.frequentFlyerNumber = frequentFlyerNumber;
}
public FrequentFlyer named(String firstName, String lastName) {
return new FrequentFlyer(frequentFlyerNumber, firstName, lastName, new InMemoryStatusService());
}