private string ProcessExport(ISyncMapper mapper, string editorAlias, object value)
 {
     return(mapper.GetExportValue(value, editorAlias));
 }
 private string ProcessImport(ISyncMapper mapper, string editorAlias, object value)
 {
     return(mapper.GetImportValue(value.ToString(), editorAlias));
 }