public Profile()
 {
     this.dateOfBirthField = new DateOfBirth();
     this.localeField = new Locale();
     this.personalGreetingField = new PersonalGreeting();
     this.securityChallengeField = new List<SecurityChallenge>();
     this.preferencesField = new Preferences();
     this.nameField = new ProfileName();
     this.mobilePhoneField = new MobilePhone();
 }
 public ShippingDestination()
 {
     this.addressField = new Address();
     this.phoneNumberField = new MobilePhone();
 }
 public PaymentCard()
 {
     this.issuerField = new Logo();
     this.addressField = new Address();
     this.phoneNumberField = new MobilePhone();
     this.cardBrandField = new CardBrand();
 }