예제 #1
0
파일: Database.cs 프로젝트: MNHarun/higlabo
        protected static CommandExecutingEventArgs OnCommandExecuting(CommandExecutingEventArgs e)
        {
            var eh = Database.CommandExecuting;

            if (eh != null)
            {
                eh(null, e);
            }
            return(e);
        }
예제 #2
0
 protected static CommandExecutingEventArgs OnCommandExecuting(CommandExecutingEventArgs e)
 {
     var eh = Database.CommandExecuting;
     if (eh != null)
     {
         eh(null, e);
     }
     return e;
 }