Пример #1
0
        public InsStoreData(IInsStoreDA insStoreDA, InsStoreBL insStoreBL, IStorage storage, IRepositoryBL reposBL, ILeechConfig config, ILogger logger)
        {
            _insStoreDA = insStoreDA;
            _insStoreBL = insStoreBL;
            _storage    = storage;
            _reposBL    = reposBL;
            _config     = config;
            _logger     = logger;

            _tfs = new Timeframes[]
            {
                Timeframes.Min,
                Timeframes.Min5,
                Timeframes.Hour,
                Timeframes.Day
            };
            _insStore_barRow = new Dictionary <Common.Data.InsStore, BarRow>();
            _insID_barRows   = new Dictionary <int, List <BarRow> >();
        }
Пример #2
0
 public InsStoreBL(IInstrumBL instrumBL, IInsStoreDA insStoreDA)
 {
     _instrumBL  = instrumBL;
     _insStoreDA = insStoreDA;
 }
Пример #3
0
 public InsStoreBL(IInsStoreDA da)
 {
     _insStoreDA = da;
 }
Пример #4
0
 public InstrumBL(IInstrumDA instrumDA, IInsStoreDA insStoreDA)
 {
     _instrumDA  = instrumDA;
     _insStoreDA = insStoreDA;
 }