Example #1
0
 public List <Account> QueryAccountsByQuery(AccountQuery query, int from, int count, string[] fields)
 {
     byte[] arr = RemoteHelper.QueryAccountsByQuery(query, from, count, fields);
     return((List <Account>)We7Helper.BytesToObject(arr));
 }