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