public Address()
 {
     this.AddressId      = Guid.NewGuid().ToString();
     this.ContactType    = ContactType.GetValueOrDefault();
     this.AddressContent = string.Empty;
     this.ContactId      = string.Empty;
 }
Exemple #2
0
 public Telephone()
 {
     this.TelephoneId      = Guid.NewGuid().ToString();
     this.ContactType      = ContactType.GetValueOrDefault();
     this.TelephoneContent = string.Empty;
     this.ContactId        = string.Empty;
 }
Exemple #3
0
 public Email()
 {
     this.EmailId      = Guid.NewGuid().ToString();
     this.EmailContent = string.Empty;
     this.ContactType  = ContactType.GetValueOrDefault();
     this.ContactId    = string.Empty;
 }