/// <remarks/> public void DoTCATollsDocumentPaymentByStoreAsync(int merchantId, string TID, string password, string cashier, long transactionId, double amount, double feeAmount, string purchaseId, TCADocument[] paidDocuments, string storeId, string zipCode, string transactionMode) { this.DoTCATollsDocumentPaymentByStoreAsync(merchantId, TID, password, cashier, transactionId, amount, feeAmount, purchaseId, paidDocuments, storeId, zipCode, transactionMode, null); }
/// <remarks/> public void DoTCATollsDocumentPaymentByStoreAsync(int merchantId, string TID, string password, string cashier, long transactionId, double amount, double feeAmount, string purchaseId, TCADocument[] paidDocuments, string storeId, string zipCode, string transactionMode, object userState) { if ((this.DoTCATollsDocumentPaymentByStoreOperationCompleted == null)) { this.DoTCATollsDocumentPaymentByStoreOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDoTCATollsDocumentPaymentByStoreOperationCompleted); } this.InvokeAsync("DoTCATollsDocumentPaymentByStore", new object[] { merchantId, TID, password, cashier, transactionId, amount, feeAmount, purchaseId, paidDocuments, storeId, zipCode, transactionMode}, this.DoTCATollsDocumentPaymentByStoreOperationCompleted, userState); }
public TCADocumentPaymentResponse DoTCATollsDocumentPaymentByStore(int merchantId, string TID, string password, string cashier, long transactionId, double amount, double feeAmount, string purchaseId, TCADocument[] paidDocuments, string storeId, string zipCode, string transactionMode) { object[] results = this.Invoke("DoTCATollsDocumentPaymentByStore", new object[] { merchantId, TID, password, cashier, transactionId, amount, feeAmount, purchaseId, paidDocuments, storeId, zipCode, transactionMode}); return ((TCADocumentPaymentResponse)(results[0])); }