QueryDataServiceClient.cs 647 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Aitex.Core.WCF;
  6. namespace Aitex.Core.WCF
  7. {
  8. //public class QueryDataServiceClient : ServiceClientWrapper<IQueryDataService>, IQueryDataService
  9. //{
  10. // public QueryDataServiceClient()
  11. // : base("Client_IQueryDataService", "QueryDataService")
  12. // {
  13. // }
  14. // public Dictionary<string, object> PollData(IEnumerable<string> keys)
  15. // {
  16. // Dictionary<string, object> result = null;
  17. // Invoke(svc => { result = svc.PollData(keys); });
  18. // return result;
  19. // }
  20. //}
  21. }