Ejemplo n.º 1
0
        public MetaDataObject(string id, string displayName, object value = null, MetaDataObjectType fieldType = MetaDataObjectType.String, List <string> selectorValues = null)
        {
            this.ID          = id;
            this.DisplayName = displayName;
            this.FieldType   = fieldType;

            this.SelectorValues = selectorValues;

            this.Value = value;
        }
Ejemplo n.º 2
0
 public MetaDataObjectBuilder(string id, string displayName, MetaDataObjectType type = MetaDataObjectType.String, List <string> selectValues = null)
 {
     template = new MetaDataObject(id, displayName, type, selectorValues: selectValues);
 }
Ejemplo n.º 3
0
 public void SetFieldType(MetaDataObjectType type)
 {
     FieldType = type;
 }