public HistoricalDataService(IHistoricalDataRepository historicalDataRepository)
 {
     this.historicalDataRepository = historicalDataRepository;
 }
 public HistoricalDataService(IHistoricalDataRepository historicalData, IUnitOfWork <TaxiAggregatorContext> uow)
 {
     _historicalData = historicalData;
     _uow            = uow;
 }