public CandidateFilesController(IEmployerMemberViewsCommand employerMemberViewsCommand, IEmployerMemberViewsQuery employerMemberViewsQuery, IEmployerResumeFilesQuery employerResumeFilesQuery, IFilesQuery filesQuery)
 {
     _employerMemberViewsCommand = employerMemberViewsCommand;
     _employerMemberViewsQuery   = employerMemberViewsQuery;
     _employerResumeFilesQuery   = employerResumeFilesQuery;
     _filesQuery = filesQuery;
 }
 public EmployerMemberContactsCommand(IEmployerContactsRepository repository, IEmployerMemberViewsCommand employerMemberViewsCommand, IMemberContactsQuery memberContactsQuery, IFilesCommand filesCommand, IFilesQuery filesQuery)
 {
     _repository = repository;
     _employerMemberViewsCommand = employerMemberViewsCommand;
     _memberContactsQuery        = memberContactsQuery;
     _filesCommand = filesCommand;
     _filesQuery   = filesQuery;
 }
Example #3
0
 public CandidatesController(IEmployerMemberViewsCommand employerMemberViewsCommand, IEmployerMemberViewsQuery employerMemberViewsQuery, IMemberStatusQuery memberStatusQuery, IUserSessionsQuery userSessionsQuery, IJobAdApplicantsQuery jobAdApplicantsQuery)
 {
     _employerMemberViewsCommand = employerMemberViewsCommand;
     _employerMemberViewsQuery   = employerMemberViewsQuery;
     _memberStatusQuery          = memberStatusQuery;
     _userSessionsQuery          = userSessionsQuery;
     _jobAdApplicantsQuery       = jobAdApplicantsQuery;
 }
Example #4
0
 public CandidatesApiController(IEmployerMemberViewsCommand employerMemberViewsCommand, IEmployerMemberViewsQuery employerMemberViewsQuery, IEmployerMemberContactsCommand employerMemberContactsCommand, IEmployerResumeFilesQuery employerResumeFilesQuery, IEmailsCommand emailsCommand, IJobAdApplicantsQuery jobAdApplicantsQuery)
 {
     _employerMemberViewsCommand    = employerMemberViewsCommand;
     _employerMemberViewsQuery      = employerMemberViewsQuery;
     _employerMemberContactsCommand = employerMemberContactsCommand;
     _employerResumeFilesQuery      = employerResumeFilesQuery;
     _emailsCommand        = emailsCommand;
     _jobAdApplicantsQuery = jobAdApplicantsQuery;
 }
Example #5
0
 public CandidatesApiController(IExecuteMemberSearchCommand executeMemberSearchCommand, IEmployerMemberViewsCommand employerMemberViewsCommand, IMemberSearchAlertsCommand memberSearchAlertsCommand, IEmployerMemberViewsQuery employerMemberViewsQuery, IMemberStatusQuery memberStatusQuery)
     : base(executeMemberSearchCommand, employerMemberViewsQuery, memberStatusQuery)
 {
     _employerMemberViewsCommand = employerMemberViewsCommand;
     _memberSearchAlertsCommand  = memberSearchAlertsCommand;
 }