public Feature() { Type = new FeatureType(); CreatedBy = new User(); LastModifiedBy = new User(); OwnerOrganization = new Organization(); }
public Property() { Type = new PropertyType(); Features = new FeatureValue[] { }; CreatedBy = new User(); LastModifiedBy = new User(); OwnerOrganization = new Organization(); }
public FeatureValue() { Feature = new FeatureType(); LastModifiedBy = new User(); }
public Organization() { Members = new User[] { }; }