示例#1
0
 protected virtual OperationKeys CreateOperationKeys()
 {
     return(OperationKeysManager.GetOperationKeys <TEntity>());
 }
示例#2
0
 public void MapExportKey(string exportKey)
 {
     OperationKeysManager.GetOperationKeys <TEntity>().ExportKey = exportKey;
 }
示例#3
0
 public void MapPrintKey(string printKey)
 {
     OperationKeysManager.GetOperationKeys <TEntity>().PrintKey = printKey;
 }
示例#4
0
 public void MapViewKey(string viewKey)
 {
     OperationKeysManager.GetOperationKeys <TEntity>().ViewKey = viewKey;
 }
示例#5
0
 public void MapImportKey(string importKey)
 {
     OperationKeysManager.GetOperationKeys <TEntity>().ImportKey = importKey;
 }
示例#6
0
 public void MapInsertKey(string insertKey)
 {
     OperationKeysManager.GetOperationKeys <TEntity>().InsertKey = insertKey;
 }
示例#7
0
 public void MapDeleteKey(string deleteKey)
 {
     OperationKeysManager.GetOperationKeys <TEntity>().DeleteKey = deleteKey;
 }
示例#8
0
 public void MapUpdateKey(string updateKey)
 {
     OperationKeysManager.GetOperationKeys <TEntity>().UpdateKey = updateKey;
 }