Example #1
0
 public CandidatesController(ICandidateDesignationRepository candidateDesignationRepository,
                             ICandidateRepository candidateRepository,
                             ICandidateActivityRepository candidateActivityRepository,
                             IInterviewRoundRepository interviewRoundRepository,
                             IInterviewRoundActivityRepository interviewRoundActivityRepository,
                             ICandidateTechnologyMapRepository candidateTechnologyMapRepository,
                             IUserRepository userRepository,
                             IJobOpeningRepository jobOpeningRepository,
                             IRoundRepository roundRepository,
                             ICandidateDocumentRepository candidateDocumentRepository,
                             ITechnologyRepository technologyRepository,
                             ICandidateService candidateService,
                             ISettingsService settingsService,
                             EmailComposerService emailComposerService,
                             IUnitOfWork unitOfWork)
 {
     _candidateDesignationRepository   = candidateDesignationRepository;
     _candidateRepository              = candidateRepository;
     _candidateActivityRepository      = candidateActivityRepository;
     _interviewRoundRepository         = interviewRoundRepository;
     _interviewRoundActivityRepository = interviewRoundActivityRepository;
     _userRepository                   = userRepository;
     _jobOpeningRepository             = jobOpeningRepository;
     _roundRepository                  = roundRepository;
     _candidateDocumentRepository      = candidateDocumentRepository;
     _candidateService                 = candidateService;
     _candidateTechnologyMapRepository = candidateTechnologyMapRepository;
     _technologyRepository             = technologyRepository;
     _emailComposerService             = emailComposerService;
     _unitOfWork      = unitOfWork;
     _settingsService = settingsService;
 }
Example #2
0
 public InterviewRoundService(ISettingsService settingsService,
                              IUserRepository userRepository,
                              IInterviewRoundRepository interviewRoundRepository)
 {
     _settingsService          = settingsService;
     _userRepository           = userRepository;
     _interviewRoundRepository = interviewRoundRepository;
 }
Example #3
0
 public PortalController(ICandidateRepository candidateRepository,
                         IJobOpeningRepository jobOpeningRepository,
                         IInterviewRoundRepository interviewRoundRepository,
                         IRoundRepository roundRepository,
                         ICandidateTechnologyMapRepository candidateTechnologyMapRepository,
                         ITechnologyRepository technologyRepository,
                         ICandidateDesignationRepository candidateDesignationRepository,
                         IUnitOfWork unitOfWork)
 {
     _candidateRepository              = candidateRepository;
     _jobOpeningRepository             = jobOpeningRepository;
     _roundRepository                  = roundRepository;
     _interviewRoundRepository         = interviewRoundRepository;
     _candidateTechnologyMapRepository = candidateTechnologyMapRepository;
     _technologyRepository             = technologyRepository;
     _candidateDesignationRepository   = candidateDesignationRepository;
     _unitOfWork = unitOfWork;
 }
Example #4
0
        public CandidateService(IInterviewRoundRepository interviewRoundRepository,
                                IJobOfferRepository jobOfferRepository,
                                ICandidateActivityRepository candidateActivityRepository,
                                ICandidateTechnologyMapRepository candidateTechnologyMapRepository,
                                ICandidateDocumentRepository candidateDocumentRepository,
                                ICandidateRepository candidateRepository,
                                IUnitOfWork unitOfWork)
        {
            _interviewRoundRepository = interviewRoundRepository;
            _jobOfferRepository       = jobOfferRepository;

            _candidateActivityRepository      = candidateActivityRepository;
            _candidateDocumentRepository      = candidateDocumentRepository;
            _candidateTechnologyMapRepository = candidateTechnologyMapRepository;

            _candidateRepository = candidateRepository;

            _unitOfWork = unitOfWork;
        }
        public InterviewRoundsController(IInterviewRoundRepository interviewRoundRepository,
                                         IInterviewRoundActivityRepository interviewRoundActivityRepository,
                                         IInterviewRoundDocumentRepository interviewRoundDocumentRepository,
                                         ICandidateRepository candidateRepository,
                                         IRoundRepository roundRepository,
                                         IUserRepository userRepository,
                                         IJobOpeningRepository jobOpeningRepository,
                                         EmailComposerService emailComposerService,
                                         IUnitOfWork unitOfWork)
        {
            _interviewRoundRepository         = interviewRoundRepository;
            _interviewRoundActivityRepository = interviewRoundActivityRepository;
            _interviewRoundDocumentRepository = interviewRoundDocumentRepository;
            _candidateRepository  = candidateRepository;
            _userRepository       = userRepository;
            _jobOpeningRepository = jobOpeningRepository;
            _roundRepository      = roundRepository;
            _unitOfWork           = unitOfWork;

            _emailComposerService = emailComposerService;
        }
Example #6
0
 public GetInterviewRoundDetailQueryHandler(IInterviewRoundRepository context)
 {
     _context = context;
 }
Example #7
0
 public Handler(IInterviewRoundRepository context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
 public InterviewReminderController(IInterviewRoundRepository interviewRoundRepository,
                                    EmailComposerService emailComposerService)
 {
     _interviewRoundRepository = interviewRoundRepository;
     _emailComposerService     = emailComposerService;
 }
 public GetInterviewRoundListDetailQueryHandler(IInterviewRoundRepository context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public Handler(IInterviewRoundRepository context)
 {
     _context = context;
 }
Example #11
0
 public InterviewsController(IInterviewRoundRepository interviewRoundRepository,
                             IUnitOfWork unitOfWork)
 {
     _interviewRoundRepository = interviewRoundRepository;
     _unitOfWork = unitOfWork;
 }
Example #12
0
 public DeleteInterviewRoundCommandHandler(IInterviewRoundRepository context)
 {
     _context = context;
 }