예제 #1
0
파일: Header.cs 프로젝트: dur41d/sdmxdotnet
 public Header(Id id)
 {
     Id = id;
     Senders = new List<Party>();
     Receivers = new List<Party>();
     Source = new InternationalText();
     Name = new InternationalText();
 }
예제 #2
0
파일: Group.cs 프로젝트: dur41d/sdmxdotnet
        internal Group(Id id, KeyFamily keyFamily)
        {            
            Contract.AssertNotNull(id, "id");
            Contract.AssertNotNull(keyFamily, "keyFamily");

            Id = id;
            KeyFamily = keyFamily;
            Description = new InternationalText();
        }
예제 #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>();
        }
예제 #4
0
 public IdentifiableArtefact(Id id)
 {
     Id = id;
     Name = new InternationalText();
     Description = new InternationalText();
 }
예제 #5
0
파일: Party.cs 프로젝트: dur41d/sdmxdotnet
 public Party(Id id)
 {
     Id = id;
     Contacts = new List<Contact>();
     Name = new InternationalText();
 }
예제 #6
0
 public Annotation()
 {
     Text = new InternationalText();
 }