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