예제 #1
0
 public static ActionResult KernelVersionSynch(Session session)
 {
     session.Log("Begin KernelVersionSynch");
     try
     {
         var    vW = new DbVersion();
         string er = vW.UpdateControllerDataVersion(session.GetTargetPath("INSTALLLOCATION") + "Controller\\ControllerData.accdb", true);
     }
     catch (Exception exception)
     {
         exception.MessageError();
     }
     session.Log("End KernelVersionSynch");
     return(ActionResult.Success);
 }