コード例 #1
0
            /// <summary>
            /// Returns a the description of some account
            /// </summary>
            /// <param name="id"></param>
            /// <returns></returns>
            public WipService.getAccountResponse GetAccount(string id)
            {
                var port = Util.Port();

                WipService.getAccountRequest acreq = new MPXMobile.WipService.getAccountRequest();
                acreq.accountId = int.Parse(id);
                var account = port.getAccount(acreq);

                return(account);
            }
コード例 #2
0
ファイル: Donors.cs プロジェクト: ahead666/mpx_mobile
 /// <summary>
 /// Returns a the description of some account
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public WipService.getAccountResponse GetAccount(string id)
 {
     var port = Util.Port();
     WipService.getAccountRequest acreq = new MPXMobile.WipService.getAccountRequest();
     acreq.accountId = int.Parse(id);
     var account = port.getAccount(acreq);
     return account;
 }