Ejemplo n.º 1
0
 public void SavePrint(string printFilePath, string printNo, DateTime printDate, out string error)
 {
     error = "";
     try
     {
         _context.usp_QT_InsertQuotePrints(_quoteNumber, printFilePath, printNo, printDate, tranDt, result);
     }
     catch (Exception ex)
     {
         error = ("Error occured when attempting to save Print to database.  Print was not saved.");
     }
 }