public async void LoadAsync()
 {
     BillingCycles.Clear();
     foreach (var bc in BillingCycleData.BillingCycles)
     {
         BillingCycles.Add(bc);
     }
 }
Exemplo n.º 2
0
 /// <remarks/>
 public void ACHVerifyRecurringAsync(
             string MerchantID, 
             string RegKey, 
             string NctID, 
             string RefID, 
             decimal Amount, 
             string CheckNo, 
             string TransRoute, 
             string BankAccountNo, 
             AccountType BankAccountType, 
             string NextProcessDate, 
             int NumOfDebits, 
             BillingCycles BillingCycle, 
             string DriveLicenseNo, 
             string DriveLicenseState, 
             string Name, 
             string Address, 
             string City, 
             string State, 
             string ZipCode, 
             string Phone, 
             CheckType checkType, 
             bool fullAmountVerify, 
             object userState) {
     if ((this.ACHVerifyRecurringOperationCompleted == null)) {
         this.ACHVerifyRecurringOperationCompleted = new System.Threading.SendOrPostCallback(this.OnACHVerifyRecurringOperationCompleted);
     }
     this.InvokeAsync("ACHVerifyRecurring", new object[] {
                 MerchantID,
                 RegKey,
                 NctID,
                 RefID,
                 Amount,
                 CheckNo,
                 TransRoute,
                 BankAccountNo,
                 BankAccountType,
                 NextProcessDate,
                 NumOfDebits,
                 BillingCycle,
                 DriveLicenseNo,
                 DriveLicenseState,
                 Name,
                 Address,
                 City,
                 State,
                 ZipCode,
                 Phone,
                 checkType,
                 fullAmountVerify}, this.ACHVerifyRecurringOperationCompleted, userState);
 }
Exemplo n.º 3
0
 public RecurringStatus ACHVerifyRecurring(
             string MerchantID, 
             string RegKey, 
             string NctID, 
             string RefID, 
             decimal Amount, 
             string CheckNo, 
             string TransRoute, 
             string BankAccountNo, 
             AccountType BankAccountType, 
             string NextProcessDate, 
             int NumOfDebits, 
             BillingCycles BillingCycle, 
             string DriveLicenseNo, 
             string DriveLicenseState, 
             string Name, 
             string Address, 
             string City, 
             string State, 
             string ZipCode, 
             string Phone, 
             CheckType checkType, 
             bool fullAmountVerify) {
     object[] results = this.Invoke("ACHVerifyRecurring", new object[] {
                 MerchantID,
                 RegKey,
                 NctID,
                 RefID,
                 Amount,
                 CheckNo,
                 TransRoute,
                 BankAccountNo,
                 BankAccountType,
                 NextProcessDate,
                 NumOfDebits,
                 BillingCycle,
                 DriveLicenseNo,
                 DriveLicenseState,
                 Name,
                 Address,
                 City,
                 State,
                 ZipCode,
                 Phone,
                 checkType,
                 fullAmountVerify});
     return ((RecurringStatus)(results[0]));
 }
Exemplo n.º 4
0
 /// <remarks/>
 public void ACHVerifyRecurringAsync(
             string MerchantID, 
             string RegKey, 
             string NctID, 
             string RefID, 
             decimal Amount, 
             string CheckNo, 
             string TransRoute, 
             string BankAccountNo, 
             AccountType BankAccountType, 
             string NextProcessDate, 
             int NumOfDebits, 
             BillingCycles BillingCycle, 
             string DriveLicenseNo, 
             string DriveLicenseState, 
             string Name, 
             string Address, 
             string City, 
             string State, 
             string ZipCode, 
             string Phone, 
             CheckType checkType, 
             bool fullAmountVerify) {
     this.ACHVerifyRecurringAsync(MerchantID, RegKey, NctID, RefID, Amount, CheckNo, TransRoute, BankAccountNo, BankAccountType, NextProcessDate, NumOfDebits, BillingCycle, DriveLicenseNo, DriveLicenseState, Name, Address, City, State, ZipCode, Phone, checkType, fullAmountVerify, null);
 }
Exemplo n.º 5
0
 /// <remarks/>
 public void ACHRecurringAsync(
             string MerchantID, 
             string RegKey, 
             string RefID, 
             decimal Amount, 
             string TransRoute, 
             string BankAccountNo, 
             AccountType BankAccountType, 
             string NextProcessDate, 
             int NumOfDebits, 
             BillingCycles BillingCycle, 
             string Name, 
             string Address, 
             string City, 
             string State, 
             string ZipCode, 
             string Phone, 
             CheckType checkType) {
     this.ACHRecurringAsync(MerchantID, RegKey, RefID, Amount, TransRoute, BankAccountNo, BankAccountType, NextProcessDate, NumOfDebits, BillingCycle, Name, Address, City, State, ZipCode, Phone, checkType, null);
 }