public StatisticsController(StatisticsRepository statisticsRepository)
 {
     _statisticsRepository = statisticsRepository;
 }
 public GetResultController(StatisticsRepository statisticsRepository, GitHubScanner gitHubScanner)
 {
     _statisticsRepository = statisticsRepository;
     _gitHubScanner = gitHubScanner;
 }