示例#1
0
		/// <remarks/>
		public Project(ArchivingProject project)
		{
			Name = project.Name;
			Title = project.Title;
			Id = new List<string> { project.Name };
			Description = new DescriptionTypeCollection();
			Contact = new ContactType();
			if (!string.IsNullOrEmpty(project.Author))
				Contact.Name = project.Author;
		}
示例#2
0
		/// <remarks/>
		public AccessType()
		{
			// initialize for Arbil
			Availability = string.Empty;
			Date = string.Empty;
			Owner = string.Empty;
			Publisher = string.Empty;
			Contact = new ContactType();
		}
示例#3
0
		/// <remarks/>
		public Project()
		{
			Name = string.Empty;
			Title = string.Empty;
			Id = new List<string> {string.Empty};
			Description = new DescriptionTypeCollection();
			Contact = new ContactType();
		}