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

            Id          = id;
            KeyFamily   = keyFamily;
            Description = new InternationalText();
        }
Beispiel #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>();
        }
Beispiel #4
0
 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();
 }
Beispiel #6
0
 public Annotation()
 {
     Text = new InternationalText();
 }