Example #1
0
 public PersonInfo(Person person, Password password, PersonPhone personPhone, Address address, BusinessEntityAddress businessEntityAddress)
 {
     Person  = person;
     Address = address;
     BusinessEntityAddress = businessEntityAddress;
     Password    = password;
     PersonPhone = personPhone;
 }
Example #2
0
 public PersonGeneral(Person person, Password password, Email email, PersonPhone personPhone, Address address)
 {
     Person      = person;
     Password    = password;
     Email       = email;
     PersonPhone = personPhone;
     Address     = address;
 }
Example #3
0
 public Human(Person person, Password password, PersonPhone personPhone, Address address, BusinessEntityAddress businessEntityAddress, Email emailAdress)
 {
     Person  = person;
     Address = address;
     BusinessEntityAddress = businessEntityAddress;
     Password    = password;
     PersonPhone = personPhone;
     EmailAdress = emailAdress;
 }
Example #4
0
 public Person(BusinessEntity BusinessEntity, ContactType ContactType,
               PersonPhone PersonPhone, CountryRegion CountryRegion,
               EmailAddress EmailAddress)
 {
     this.BusinessEntity = BusinessEntity;
     this.ContactType    = ContactType;
     this.PersonPhone    = PersonPhone;
     this.CountryRegion  = CountryRegion;
     this.EmailAddress   = EmailAddress;
 }