コード例 #1
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
        public string GetCurrentBatchID([System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] MERCHANT_KEY MerchantKey)
        {
            object[] results = this.Invoke("GetCurrentBatchID", new object[] {
                MerchantKey
            });

            return((string)(results[0]));
        }
コード例 #2
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
        public TRANSACTIONRESPONSE[] GetBatchTransactions([System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] MERCHANT_KEY MerchantKey, [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] string BatchID)
        {
            object[] results = this.Invoke("GetBatchTransactions", new object[] {
                MerchantKey,
                BatchID
            });

            return((TRANSACTIONRESPONSE[])(results[0]));
        }
コード例 #3
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
        public TRANSACTIONRESPONSE GetTransactionByOrderID([System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] MERCHANT_KEY MerchantKey, [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] string OrderID)
        {
            object[] results = this.Invoke("GetTransactionByOrderID", new object[] {
                MerchantKey,
                OrderID
            });

            return((TRANSACTIONRESPONSE)(results[0]));
        }
コード例 #4
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
 /// <remarks/>
 public void GetCurrentBatchIDAsync(MERCHANT_KEY MerchantKey, object userState)
 {
     if ((this.GetCurrentBatchIDOperationCompleted == null))
     {
         this.GetCurrentBatchIDOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCurrentBatchIDOperationCompleted);
     }
     this.InvokeAsync("GetCurrentBatchID", new object[] {
         MerchantKey
     }, this.GetCurrentBatchIDOperationCompleted, userState);
 }
コード例 #5
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
 /// <remarks/>
 public void GetBatchTransactionsAsync(MERCHANT_KEY MerchantKey, string BatchID, object userState)
 {
     if ((this.GetBatchTransactionsOperationCompleted == null))
     {
         this.GetBatchTransactionsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetBatchTransactionsOperationCompleted);
     }
     this.InvokeAsync("GetBatchTransactions", new object[] {
         MerchantKey,
         BatchID
     }, this.GetBatchTransactionsOperationCompleted, userState);
 }
コード例 #6
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
        public TRANSACTIONRESPONSE[] GetTransactions([System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] MERCHANT_KEY MerchantKey, [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] string StartDate, [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] string EndDate, [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] string ExcludeDate, [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] string CustomerID, decimal Amount, [System.Xml.Serialization.XmlIgnoreAttribute()] bool AmountSpecified, [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] string RBOnly)
        {
            object[] results = this.Invoke("GetTransactions", new object[] {
                MerchantKey,
                StartDate,
                EndDate,
                ExcludeDate,
                CustomerID,
                Amount,
                AmountSpecified,
                RBOnly
            });

            return((TRANSACTIONRESPONSE[])(results[0]));
        }
コード例 #7
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
 /// <remarks/>
 public void GetTransactionsAsync(MERCHANT_KEY MerchantKey, string StartDate, string EndDate, string ExcludeDate, string CustomerID, decimal Amount, bool AmountSpecified, string RBOnly, object userState)
 {
     if ((this.GetTransactionsOperationCompleted == null))
     {
         this.GetTransactionsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetTransactionsOperationCompleted);
     }
     this.InvokeAsync("GetTransactions", new object[] {
         MerchantKey,
         StartDate,
         EndDate,
         ExcludeDate,
         CustomerID,
         Amount,
         AmountSpecified,
         RBOnly
     }, this.GetTransactionsOperationCompleted, userState);
 }
コード例 #8
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
 /// <remarks/>
 public void GetCurrentBatchIDAsync(MERCHANT_KEY MerchantKey)
 {
     this.GetCurrentBatchIDAsync(MerchantKey, null);
 }
コード例 #9
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
 /// <remarks/>
 public void GetBatchTransactionsAsync(MERCHANT_KEY MerchantKey, string BatchID)
 {
     this.GetBatchTransactionsAsync(MerchantKey, BatchID, null);
 }
コード例 #10
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
 /// <remarks/>
 public void GetTransactionByOrderIDAsync(MERCHANT_KEY MerchantKey, string OrderID)
 {
     this.GetTransactionByOrderIDAsync(MerchantKey, OrderID, null);
 }
コード例 #11
0
ファイル: Reference.cs プロジェクト: vinsource/vincontrol
 /// <remarks/>
 public void GetTransactionsAsync(MERCHANT_KEY MerchantKey, string StartDate, string EndDate, string ExcludeDate, string CustomerID, decimal Amount, bool AmountSpecified, string RBOnly)
 {
     this.GetTransactionsAsync(MerchantKey, StartDate, EndDate, ExcludeDate, CustomerID, Amount, AmountSpecified, RBOnly, null);
 }