123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Aitex.Core.WCF;
- namespace Aitex.Core.WCF
- {
- //public class QueryDataServiceClient : ServiceClientWrapper<IQueryDataService>, IQueryDataService
- //{
- // public QueryDataServiceClient()
- // : base("Client_IQueryDataService", "QueryDataService")
- // {
- // }
- // public Dictionary<string, object> PollData(IEnumerable<string> keys)
- // {
- // Dictionary<string, object> result = null;
- // Invoke(svc => { result = svc.PollData(keys); });
- // return result;
- // }
- //}
- }
|