Ejemplo n.º 1
0
 private bool SaveInvoice(ref string ErrorMessage)
 {
     try
     {
         CI   invoice = CreateInvoiceObject();
         bool IsSave  = invoice.Save(ref ErrorMessage);
         if (IsSave)
         {
             InvoiceNo = invoice.InvoiceNo;
         }
         return(IsSave);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }