using System.Collections.Generic; using Muchinfo.MTPClient.Adapter.Abstract; using System; using Muchinfo.MTPClient.Data; using Muchinfo.MTPClient.Data.Model; using Muchinfo.MTPClient.Data.Model.Message; namespace Muchinfo.MTPClient.Adapter.Json { public class AccountJsonAdapter : AccountAdapter { public override byte[] ToReqeustLogOut(ulong loginID) { throw new NotImplementedException(); } public override Data.ResponeEntity TolocalAccountInfoEntity(object obj) { throw new NotImplementedException(); } public override byte[] ToReqeustAccountInfo(ulong accountCode) { throw new NotImplementedException(); } public override Data.ResponeEntity ToLocalAccountEntity(object obj) { throw new NotImplementedException(); } public override Data.ResponeEntity ToLocalLoginEntity(object obj) { throw new NotImplementedException(); } public override byte[] ToTokenCheck(ulong loginID,string token, ulong octTime) { throw new NotImplementedException(); } public override Data.ResponeEntity GetTokenStatus(object obj) { throw new NotImplementedException(); } public override byte[] ToReqeustLogin(int loginType, string passWord, ulong loginID, string guid, string loginIP, string systemDesc, string version, byte[] clientSystemInfo, string clientAppID) { throw new NotImplementedException(); } public override byte[] ToReqeustModifyPwds(Data.Model.Account.AccountPwds accountPwds) { throw new NotImplementedException(); } public override Data.ResponeEntity ResponeModifyPWDEntity(object obj) { throw new NotImplementedException(); } public override byte[] ToReqeustFuncMenu(string loginCode) { throw new NotImplementedException(); } public override ResponeEntity> ResponeLocalFuncMenu(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustTradeFeeRules(uint accountid) { throw new NotImplementedException(); } public override ResponeEntity> ResoneLocalGoodsFeeRules(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustRiskChecked(ulong accountid, uint isChecked) { throw new NotImplementedException(); } public override ResponeEntity ResponeRiskChecked(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustGoodsQueryReq(ulong GoodsUTime) { throw new NotImplementedException(); } public override ResponeEntity> ResponeGoodsQueryReq(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustLastUpdateTimeReq() { throw new NotImplementedException(); } public override ResponeEntity ResponeLastUpdateTimeReq(object data) { throw new NotImplementedException(); } public override ResponeEntity ResponeLoginQueryReq(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustRiskTipQueryReq(ulong RiskMsgUTime) { throw new NotImplementedException(); } public override ResponeEntity ResponeRiskTipQueryReq(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustMarketsQueryReq(ulong MarketsUTime) { throw new NotImplementedException(); } public override ResponeEntity> ResponeMarketsQueryReq(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustDictionaryQueryReq(ulong DirctionaryUTime) { throw new NotImplementedException(); } public override ResponeEntity> ResponeDictionaryQueryReq(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustErrorCodeQueryReq(ulong ErrorcodeUTime) { throw new NotImplementedException(); } public override ResponeEntity> ResponeErrorCodeQueryReq(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustMarketRunQueryReq(string TradeDate) { throw new NotImplementedException(); } public override ResponeEntity ResponeMarketRunQueryReq(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustConfigQueryReq(ulong ConfigUTime) { throw new NotImplementedException(); } public override ResponeEntity> ResponeConfigQueryReq(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustLoginQueryReq(ulong accountId, string queryType) { throw new NotImplementedException(); } public override byte[] ToReqeustNoticeQuery(ulong AccountId, long LastNoticeId) { throw new NotImplementedException(); } public override ResponeEntity> ResponeNoticeQuery(object data) { throw new NotImplementedException(); } public override byte[] ToReqeustFuncMenuQueryReq(ulong MenuUTime) { throw new NotImplementedException(); } public override byte[] ToReqeustDeliveryGoodsReq(ulong DeliveryGoodsUTime) { throw new NotImplementedException(); } public override ResponeEntity> ResponeDeliveryGoodsReq(object data) { throw new NotImplementedException(); } public override byte[] ToExternalExchangeReq() { throw new NotImplementedException(); } public override ResponeEntity> ResponseExternalExchange(object data) { throw new NotImplementedException(); } public override byte[] ToGoodsGroupReq() { throw new NotImplementedException(); } public override ResponeEntity> ResponseGoodsGroup(object data) { throw new NotImplementedException(); } } }