public static Type ExtAttrType(OrgType type) { OrgTypeInfo typeInfo = null; if (_registry.TryGetValue(type, out typeInfo)) { return(typeInfo.ExtAttrType); } return(null); }
public static bool HasExtAttr(OrgType type) { OrgTypeInfo typeInfo = null; if (_registry.TryGetValue(type, out typeInfo)) { return(typeInfo.HasExtAttr); } return(false); }