Example #1
0
 public static string AccountingCardHolder(string DebitAccount, string Amount, string content)
 {
     AccountingFlexcube.ATMService fc = new AccountingFlexcube.ATMService();
     return fc.CreateTransaction(DebitAccount, CreditAccountNumber, Amount, content);
 }
Example #2
0
 public static string ReversalTransaction(string AccountHolder, string Amount, string content)
 {
     AccountingFlexcube.ATMService fc = new AccountingFlexcube.ATMService();
     return fc.CreateTransaction(CreditAccountNumber, AccountHolder, Amount, content);
 }