Beispiel #1
0
 protected void Logger(DBAction action, Action tryHandle, Action <Exception> catchHandle = null, Action finallyHandle = null)
 {
     LogHelper.Logger(log, GetAction(action), ErrorHandle.Throw, tryHandle, catchHandle, finallyHandle);
 }
Beispiel #2
0
 protected void Logger(string function, Action tryHandle, Action <Exception> catchHandle = null, Action finallyHandle = null)
 {
     LogHelper.Logger(log, function, ErrorHandle.Throw, tryHandle, catchHandle, finallyHandle);
 }