public MappingAttribute(string dataFieldName, string specialAttributes, object defaultValue, FieldGenerateMethod generateMethod, object generateMethodExtraInfo)
     : base()
 {
     _DataFieldName = dataFieldName;
     _DefaultValue = defaultValue;
     _SpecialAttributes = specialAttributes;
     _FieldGenerateMethod = generateMethod;
     _FieldGenerateMethodExtraInfo = generateMethodExtraInfo;
 }
 public FieldGenerateInfo(FieldGenerateMethod generateMethod, object generateMethodExtraInfo)
 {
     _FieldGenerateMethod = generateMethod;
     _FieldGenerateMethodExtraInfo = generateMethodExtraInfo;
 }