WarningService.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //----------------------------------------------------------------
  2. //Module Name: WarningService
  3. //Purpose:
  4. //CopyRight: Muchinfo
  5. //History:
  6. //----------------------------------------------------------------
  7. //DateTime Author Description
  8. //----------------------------------------------------------------
  9. //2014-04-15 deng.yinping Create
  10. //----------------------------------------------------------------
  11. using Muchinfo.MTPClient.Data.Model;
  12. using Muchinfo.MTPClient.Data.Model.Account;
  13. using Muchinfo.MTPClient.IService;
  14. using System.Collections.Generic;
  15. using System.Collections.ObjectModel;
  16. namespace Muchinfo.MTPClient.Service
  17. {
  18. public class WarningService : IWarningService
  19. {
  20. public ObservableCollection<Warning> GetWarnings(TradeAccount tradeAccount)
  21. {
  22. throw new System.NotImplementedException();
  23. }
  24. public int AddWarning(Warning warning, TradeAccount tradeAccount)
  25. {
  26. throw new System.NotImplementedException();
  27. }
  28. public int UpdateWarning(Warning warning, TradeAccount tradeAccount)
  29. {
  30. throw new System.NotImplementedException();
  31. }
  32. public int DeleteWarning(int warningId, TradeAccount tradeAccount)
  33. {
  34. throw new System.NotImplementedException();
  35. }
  36. public int StartOrPauseWarning(int warningId, TradeAccount tradeAccount)
  37. {
  38. throw new System.NotImplementedException();
  39. }
  40. public Dictionary<int, string> GetSpaceTime()
  41. {
  42. throw new System.NotImplementedException();
  43. }
  44. public Dictionary<int, string> GetRepeatNumber()
  45. {
  46. throw new System.NotImplementedException();
  47. }
  48. public List<KeyValuePair<string, string>> GetWarningItem(int warningType)
  49. {
  50. throw new System.NotImplementedException();
  51. }
  52. }
  53. }