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