コード例 #1
0
ファイル: GetRecurringCharges.cs プロジェクト: mani2kc/fbeMS
        private static TaxResponse GetTaxInfo(TaxRequest taxRequest)
        {
            TaxResponse taxresponse = null;

            if (taxRequest != null)
            {
                GetTaxesClient getTaxesClient = new GetTaxesClient("NetTcpBinding_IGetTaxes");
                taxresponse = getTaxesClient.GetSOCTaxes(taxRequest);
            }

            return(taxresponse);
        }