public SearchForenameService(ICandidateRepo candidateRepo, IFileService fileService, ICounterService counterService, IValidationService validationServic) { CandidateRepo = candidateRepo; FileService = fileService; CounterService = counterService; CandidateNames = new Dictionary <string, int>(); ValidationService = validationServic; }
public void Setup() { CandidateRepo = new CandidateRepo(); FileService = new FileService(); CounterService = new CounterService(); ValidationService = new NamePatternValidationService(); SearchForenameService = new SearchForenameService(CandidateRepo, FileService, CounterService, ValidationService); SearchCharacter = 'a'; }
public CandidateController(ICandidateRepo candRep, IApplicationRepo appRep, IJobsRepo jobsRepo) { this.candRep = candRep; this.appRep = appRep; this.jobsRepo = jobsRepo; }
public ScheduledCandidatesController(ICandidateRepo candidate) { this._repo = candidate; }
public AccountController(IEmployeeLoginDataRepo eldRep, ICandidateRepo candRep, dbContainer context) { _context = context; this.eldRep = eldRep; this.candRep = candRep; }