public AdminController(GestionConcourCoreDbContext context, IIndexService index, ISearch3Service search, ICorbeil3Service corbeil, IEnregistrementService enregistrement, ISelectionService selection, IPreselectionService preselec, IEpreuveService epreuve, ICorrectionService corret, IStatistiqueService statistique)
 {
     this.index          = index;
     this.search         = search;
     this.corbeil        = corbeil;
     this.selection      = selection;
     this.preselec       = preselec;
     this.epreuve        = epreuve;
     this.enregistrement = enregistrement;
     this.corret         = corret;
     this.statistique    = statistique;
     _context            = context;
 }
 public StatistiqueController(IStatistiqueService statistiqueRepository)
 {
     _statistiqueRepository = statistiqueRepository;
 }