public PositionAssignController(IPositionAssignRepo positionAssignRepo,
                                 IGeographyRepo geographyRepo, IHistoryRepo historyRepo, IUserRepo userRepo, IApplicationRepo applicationRepo)
 {
     _positionAssignRepo = positionAssignRepo;
     _geographyRepo      = geographyRepo;
     _historyRepo        = historyRepo;
     _userRepo           = userRepo;
     _applicationRepo    = applicationRepo;
 }
 public CandidateController(ICandidateRepo candRep, IApplicationRepo appRep, IJobsRepo jobsRepo)
 {
     this.candRep  = candRep;
     this.appRep   = appRep;
     this.jobsRepo = jobsRepo;
 }
Example #3
0
 public MetricsProvider(IApplicationRepo appRepo)
 {
     _appRepo = appRepo;
 }
Example #4
0
 public ApplicationsController(IApplicationRepo appRepo, IContactRepo contactRepo)
 {
     _appRepo     = appRepo;
     _contactRepo = contactRepo;
 }
Example #5
0
 public ApplicationController(IApplicationRepo applicationRepo)
 {
     _applicationRepo = applicationRepo;
 }