public int InsertPCSessionRating(int installationNo, int cardNo, string process, string type)
 {
     try
     {
         using (ExCommsSQLDataAccess DataContext = this.GetDataContext())
         {
             return(DataContext.esp_InsertPCSessionRating(cardNo, installationNo, process, type));
         }
     }
     catch (Exception ex)
     {
         Log.Exception(ex);
         return(-1);
     }
 }