コード例 #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 CandidateController()
 {
     candidateService  = new CandidateService();
     experienceService = new ExperienceService();
     skillService      = new SkillService();
 }
コード例 #3
0
 public CandidateController()
 {
     candidateService = new CandidateService();
 }
コード例 #4
0
 public ProductsController(ILogger <ProductsController> logger, ICandidatService service)
 {
     _logger  = logger;
     _service = service;
 }
コード例 #5
0
 public CandidatController(ICandidatService candidatService)
 {
     this.CandidatService = candidatService;
 }