public Header(Id id) { Id = id; Senders = new List <Party>(); Receivers = new List <Party>(); Source = new InternationalText(); Name = new InternationalText(); }
internal Group(Id id, KeyFamily keyFamily) { Contract.AssertNotNull(id, "id"); Contract.AssertNotNull(keyFamily, "keyFamily"); Id = id; KeyFamily = keyFamily; Description = new InternationalText(); }
public Contact() { Name = new InternationalText(); Department = new InternationalText(); Role = new InternationalText(); TelephoneList = new List <string>(); FaxList = new List <string>(); X400List = new List <string>(); UriList = new List <Uri>(); EmailList = new List <string>(); }
public Party(Id id) { Id = id; Contacts = new List <Contact>(); Name = new InternationalText(); }
public IdentifiableArtefact(Id id) { Id = id; Name = new InternationalText(); Description = new InternationalText(); }
public Annotation() { Text = new InternationalText(); }