Beispiel #1
0
            /// <summary>
            /// Returns Notes by account
            /// </summary>
            /// <param name="id"></param>
            /// <returns></returns>
            public WipService.getAccountNotesResponse GetAccountNotes(string id)
            {
                var port = Models.Util.Port();

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

                return(account);
            }
Beispiel #2
0
 /// <summary>
 /// Returns Notes by account
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public WipService.getAccountNotesResponse GetAccountNotes(string id)
 {
     var port = Models.Util.Port();
     WipService.getAccountNotesRequest acreq = new MPXMobile.WipService.getAccountNotesRequest();
     acreq.accountId = int.Parse(id);
     var account = port.getAccountNotes(acreq);
     return account;
 }