Example #1
0
 public static string CheckRegister(string Account_number, string ref_no)
 {
     try
     {
         //--http://10.19.18.78:8080/NHDTGateway/ATMPort?wsdl
         AccountingFlexcube.ATMService sms = new AccountingFlexcube.ATMService();
         return sms.sendOTP(Account_number, ref_no);
     }
     catch (Exception ex)
     {
         return ex.Message;
     }
 }
Example #2
0
 public static string CheckOTP(string Account_number, string ref_no, string otp)
 {
     AccountingFlexcube.ATMService sms = new AccountingFlexcube.ATMService();
     return sms.checkOTP(Account_number, ref_no, otp);
 }
Example #3
0
 public static string ReversalTransaction(string AccountHolder, string Amount, string content)
 {
     AccountingFlexcube.ATMService fc = new AccountingFlexcube.ATMService();
     return fc.CreateTransaction(CreditAccountNumber, AccountHolder, Amount, content);
 }
Example #4
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 #5
0
 public static float GetAVLBalance(string account_number)
 {
     AccountingFlexcube.ATMService fc = new AccountingFlexcube.ATMService();
     return fc.getAVLBalance(account_number);
 }