Exemplo n.º 1
0
 public Header(Id id)
 {
     Id = id;
     Senders = new List<Party>();
     Receivers = new List<Party>();
     Source = new InternationalText();
     Name = new InternationalText();
 }
Exemplo n.º 2
0
        internal Group(Id id, KeyFamily keyFamily)
        {            
            Contract.AssertNotNull(id, "id");
            Contract.AssertNotNull(keyFamily, "keyFamily");

            Id = id;
            KeyFamily = keyFamily;
            Description = new InternationalText();
        }
Exemplo n.º 3
0
        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>();
        }
Exemplo n.º 4
0
 public IdentifiableArtefact(Id id)
 {
     Id = id;
     Name = new InternationalText();
     Description = new InternationalText();
 }
Exemplo n.º 5
0
 public Party(Id id)
 {
     Id = id;
     Contacts = new List<Contact>();
     Name = new InternationalText();
 }
Exemplo n.º 6
0
 public Annotation()
 {
     Text = new InternationalText();
 }