|
- using CnasSynchronusIDAL;
- using CnasSynchrousModel;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
-
- namespace CnasSynchronusDAL
- {
- public class TXTService : ITXTService
- {
- public Dictionary<string, DataTable> GetInstrumentData(TXTOpenParams t)
- {
- return new Dictionary<string, DataTable>() { { "txt", TXTDAL.ReadTxtFileColumn(t) } };
- }
-
- public DataTable GetInstrumentDataByDate(TXTOpenParams t, ConditionParams u)
- {
- return TXTDAL.ReadTxtFileData(t);
- }
-
- public DataTable GetInstrumentDataStruct(TXTOpenParams t, ConditionParams u)
- {
- return TXTDAL.ReadTxtFileColumn(t);
- }
- }
- }
|