예제 #1
0
 public bool ResetCompVerificationRequestStatus(int installationNo, string type)
 {
     try
     {
         using (ExCommsSQLDataAccess DataContext = this.GetDataContext())
         {
             DataContext.ResetCompVerificationRequestStatus(installationNo, type);
             return(true);
         }
     }
     catch (Exception ex)
     {
         ExceptionManager.Publish(ex);
         return(false);
     }
 }