public InvoiceObject AddBankPayment(PaymentLogObject payLog)
 {
     try
     {
         return(_transactionManager.AddBankPayment(payLog));
     }
     catch (Exception ex)
     {
         ErrorLogger.LoggError(ex.StackTrace, ex.Source, ex.Message);
         return(new InvoiceObject());
     }
 }