Ejemplo n.º 1
0
        //	public AdminController(ISearch3Service search,ICorbeil3Service corbeil, IPreselectionService preselec, ICorrectionService corret, IIndexService index)

        public AdminController(ISearch3Service search, ICorbeil3Service corbeil, ICorrectionService corret, IPreselectionService preselec, ISelectionService selection, IEpreuveService epreuve, IIndexService index)

        {
            this.search    = search;
            this.corbeil   = corbeil;
            this.preselec  = preselec;
            this.selection = selection;
            this.corret    = corret;
            this.index     = index;
            this.epreuve   = epreuve;
        }
Ejemplo n.º 2
0
 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;
 }