コード例 #1
0
 public HomeController(GestionConcourCoreDbContext _context, IFiche fiche, ICandidatService candidat_service, IEpreuveService epreuve, IHostingEnvironment hostingEnvironment)
 {
     this.candidat_service   = candidat_service;
     this.epreuve            = epreuve;
     this.hostingEnvironment = hostingEnvironment;
     this.fiche    = fiche;
     this._context = _context;
 }
コード例 #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;
 }
コード例 #3
0
 public CorrectionServiceImp(GestionConcourCoreDbContext db)
 {
     this.db = db;
 }
コード例 #4
0
 public IndexServiceImp(GestionConcourCoreDbContext db)
 {
     this.db = db;
 }
コード例 #5
0
 //Constructor
 public PreselectionServiceImp(GestionConcourCoreDbContext db)
 {
     this.db = db;
     //db.Configuration.ProxyCreationEnabled = false;
 }
コード例 #6
0
 public EpreuveServiceImp(GestionConcourCoreDbContext db)
 {
     this.db = db;
 }
コード例 #7
0
 public FicheImp(GestionConcourCoreDbContext db)
 {
     this.db = db;
 }
コード例 #8
0
 public StatistiqueServiceImpl(GestionConcourCoreDbContext db)
 {
     this.Bdd = db;
 }
コード例 #9
0
 public CandidatServiceImp(GestionConcourCoreDbContext db, IHostingEnvironment hostingEnvironment)
 {
     this.db = db;
     this.hostingEnvironment = hostingEnvironment;
 }
コード例 #10
0
 public AdminAuthController(GestionConcourCoreDbContext db)
 {
     this.db = db;
 }
コード例 #11
0
 public AuthController(GestionConcourCoreDbContext db)
 {
     _db = db;
 }
コード例 #12
0
 //Constructor
 public EnregistrementServiceImp(GestionConcourCoreDbContext db)
 {
     this.db = db;
 }
コード例 #13
0
 public Search3ServiceImp(GestionConcourCoreDbContext db)
 {
     this.db = db;
 }