Ejemplo n.º 1
0
        public static string fcnGetSavedXChargeAcct(int _intHandle, string _strXCAcctID, string _strXCPath)
        {
            XCTransaction2.XChargeTransaction Tran = new XCTransaction2.XChargeTransaction();

            string Acct = "";
            string ExpDate = "";
            string AcctType = "";
            string PurgeDate = "";
            string ErrMsg = "";

            string strRes = "";
            if (Tran.XCArchiveVaultQuery(_intHandle, _strXCPath, "DAV Query", true, true, _strXCAcctID, "", ref _strXCAcctID, out Acct, out ExpDate, out AcctType, out PurgeDate, out ErrMsg))
                strRes = ErrMsg + "\n" +
                    "XCAcctID = " + _strXCAcctID + "\n" +
                    "Acct = " + Acct + "\n" +
                    "ExpDate = " + ExpDate + "\n" +
                    "AcctType = " + AcctType + "\n" +
                    "PurgeDate = " + PurgeDate;

            return strRes;
        }