//---------------------------------------------------------------- //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 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 GetSpaceTime() { throw new System.NotImplementedException(); } public Dictionary GetRepeatNumber() { throw new System.NotImplementedException(); } public List> GetWarningItem(int warningType) { throw new System.NotImplementedException(); } } }