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