Ejemplo n.º 1
0
 public HeatMapController(IIndexInformationRepository indexInformationRepository, IBidAskHistoryRepository bidAskHistoryRepository,
                          IOvershootIndicatorsDataRepository overshootIndicatorsDataRepository)
 {
     _indexInformationRepository        = indexInformationRepository;
     _bidAskHistoryRepository           = bidAskHistoryRepository;
     _overshootIndicatorsDataRepository = overshootIndicatorsDataRepository;
 }
Ejemplo n.º 2
0
 public DataController(IBidAskCache bidAskCache, IBidAskHistoryRepository bidAskHistoryRepository)
 {
     _bidAskCache             = bidAskCache;
     _bidAskHistoryRepository = bidAskHistoryRepository;
 }