public FieldDisplayAttribute(FieldDisplayModifyType modifyType, string remoteTable, string remoteKey, string remoteField)
 {
     _ModifyType  = modifyType;
     _RemoteTable = remoteTable;
     _RemoteKey   = remoteKey;
     _RemoteField = remoteField;
 }
 public FieldDisplayAttribute(FieldDisplayModifyType modifyType, string localField)
 {
     _ModifyType  = modifyType;
     _RemoteTable = string.Empty;
     _RemoteKey   = string.Empty;
     _RemoteField = localField;
 }