示例#1
0
 public Feature()
 {
     Type = new FeatureType();
     CreatedBy = new User();
     LastModifiedBy = new User();
     OwnerOrganization = new Organization();
 }
示例#2
0
 public Property()
 {
     Type = new PropertyType();
     Features = new FeatureValue[] { };
     CreatedBy = new User();
     LastModifiedBy = new User();
     OwnerOrganization = new Organization();
 }
示例#3
0
 public FeatureValue()
 {
     Feature = new FeatureType();
     LastModifiedBy = new User();
 }
示例#4
0
 public Organization()
 {
     Members = new User[] { };
 }