protected bool OnExecuting(IDbCommand cmd) { if (Executing != null) { ExecutingEventArgs args = new ExecutingEventArgs(cmd); Executing(this, args); return(args.Cancel); } else { return(false); } }
protected bool OnExecuting(IDbCommand cmd) { if (Executing != null) { ExecutingEventArgs args = new ExecutingEventArgs(cmd); Executing(this, args); return args.Cancel; } else { return false; } }