コード例 #1
0
ファイル: AccountRemoteHelper.cs プロジェクト: sunsiz/We7CMS
 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));
 }