public String GetStoredValue(MetaTableProperty property) { if (!properties.ContainsKey(property.PropertyName)) { return(property.GetDefaultData()); } return(properties[property.PropertyName]); }
public Object GetOutputValue(MetaTableProperty property) { if (!properties.ContainsKey(property.PropertyName)) { return(property.GetDefaultData()); } return(property.GetValue(properties[property.PropertyName])); }