Esempio n. 1
0
 // constructor for address with person context
 public Address(string personID, string personURI, AddressType type)
 {
     this.person = new Person();
     this.person.id = personID;
     this.person.uri = personURI;
     this.addressType = type;
     this.household = new Household();
 }
Esempio n. 2
0
 public AddressView(string personID, string personURI, AddressType addrType)
 {
     Addr = new Address(personID, personID, addrType);
 }