| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //----------------------------------------------------------------
- //Module Name: WarningService
- //Purpose:
- //CopyRight: Muchinfo
- //History:
- //----------------------------------------------------------------
- //DateTime Author Description
- //----------------------------------------------------------------
- //2014-04-15 deng.yinping Create
- //----------------------------------------------------------------
- using Muchinfo.MTPClient.Data.Model;
- using Muchinfo.MTPClient.Data.Model.Account;
- using Muchinfo.MTPClient.IService;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- namespace Muchinfo.MTPClient.Service
- {
- public class WarningService : IWarningService
- {
- public ObservableCollection<Warning> GetWarnings(TradeAccount tradeAccount)
- {
- throw new System.NotImplementedException();
- }
- public int AddWarning(Warning warning, TradeAccount tradeAccount)
- {
- throw new System.NotImplementedException();
- }
- public int UpdateWarning(Warning warning, TradeAccount tradeAccount)
- {
- throw new System.NotImplementedException();
- }
- public int DeleteWarning(int warningId, TradeAccount tradeAccount)
- {
- throw new System.NotImplementedException();
- }
- public int StartOrPauseWarning(int warningId, TradeAccount tradeAccount)
- {
- throw new System.NotImplementedException();
- }
- public Dictionary<int, string> GetSpaceTime()
- {
- throw new System.NotImplementedException();
- }
- public Dictionary<int, string> GetRepeatNumber()
- {
- throw new System.NotImplementedException();
- }
- public List<KeyValuePair<string, string>> GetWarningItem(int warningType)
- {
- throw new System.NotImplementedException();
- }
- }
- }
|