예제 #1
0
 public PharmacyType() {
     this.phoneNumbersField = new List<PhoneNumber>();
     this.pharmacyAddressField = new Address();
 }
예제 #2
0
 public Insurance() {
     this.phoneField = new PhoneNumber();
     this.addressField = new Address();
     this.iDsField = new List<CodedValueType>();
     this.effectiveField = new EffectivePeriod();
 }
예제 #3
0
 public ExtendedBirthInformation() {
     this.birthPlaceAddressField = new Address();
 }
예제 #4
0
 public Person() {
     this.emailField = new List<Email>();
     this.employerField = new Organization();
     this.phonesField = new List<PhoneNumber>();
     this.addressField = new Address();
     this.nameField = new Name();
     this.iDsField = new List<CodedValueType>();
 }
예제 #5
0
 public Organization() {
     this.emailField = new List<Email>();
     this.phonesField = new List<PhoneNumber>();
     this.contactField = new List<string>();
     this.addressField = new Address();
     this.iDsField = new List<CodedValueType>();
 }
예제 #6
0
 public Location() {
     this.phonesField = new List<PhoneNumber>();
     this.contactField = new List<string>();
     this.addressField = new Address();
 }