Ejemplo n.º 1
0
 public CandidateService(ApplicationDbContext applicationDbContext, ICandidateLanguageService candidateLanguageService,
                         IStorageService storageService, IMailService mailService, IConfiguration configuration)
 {
     _applicationDbContext     = applicationDbContext;
     _candidateLanguageService = candidateLanguageService;
     _storageService           = storageService;
     _mailService   = mailService;
     _configuration = configuration;
 }
Ejemplo n.º 2
0
 public CandidateController(ICandidateService candidateService, ICandidateLanguageService candidateLanguageService)
 {
     _candidateService         = candidateService;
     _candidateLanguageService = candidateLanguageService;
 }
 public CandidatesLanguagesController(ICandidateLanguageService service)
 {
     _service = service;
 }