internal DynamicReferenceProperty(DynamicModelType declaringType, TPropertySource property, string name, string label, string helptext, string format, bool isStatic, ModelType propertyType, bool isList, bool isReadOnly, bool isPersisted, Attribute[] attributes)
     : base(declaringType, name, label, helptext, format, isStatic, propertyType, isList, isReadOnly, isPersisted, attributes)
 {
     this.PropertySource = property;
 }
Ejemplo n.º 2
0
 internal DynamicValueProperty(DynamicModelType declaringType, TPropertySource property, string name, string label, string helptext, string format, bool isStatic, Type propertyType, TypeConverter converter, bool isList, bool isReadOnly, bool isPersisted, Attribute[] attributes)
     : base(declaringType, name, label, helptext, format, isStatic, propertyType, converter, isList, isReadOnly, isPersisted, attributes)
 {
     this.PropertySource = property;
 }