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