Ejemplo n.º 1
0
 public SearchForenameService(ICandidateRepo candidateRepo, IFileService fileService, ICounterService counterService, IValidationService validationServic)
 {
     CandidateRepo     = candidateRepo;
     FileService       = fileService;
     CounterService    = counterService;
     CandidateNames    = new Dictionary <string, int>();
     ValidationService = validationServic;
 }
Ejemplo n.º 2
0
 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;
 }
Ejemplo n.º 4
0
 public ScheduledCandidatesController(ICandidateRepo candidate)
 {
     this._repo = candidate;
 }
 public AccountController(IEmployeeLoginDataRepo eldRep, ICandidateRepo candRep, dbContainer context)
 {
     _context     = context;
     this.eldRep  = eldRep;
     this.candRep = candRep;
 }