Exemplo n.º 1
0
 public JobAdApplicantsQuery(IApplicationsQuery applicationsQuery, IContenderListsCommand contendersListCommand, IContenderListsQuery contenderListsQuery, IMembersQuery membersQuery, ICandidateBlockListsQuery blockListsQuery)
     : base(contendersListCommand, contenderListsQuery)
 {
     _applicationsQuery = applicationsQuery;
     _membersQuery      = membersQuery;
     _blockListsQuery   = blockListsQuery;
 }
Exemplo n.º 2
0
 public BlockListsController(IExecuteMemberSearchCommand executeMemberSearchCommand, IEmployerMemberViewsQuery employerMemberViewsQuery, IMemberStatusQuery memberStatusQuery, ICandidateBlockListsQuery candidateBlockListsQuery, ICommunitiesQuery communitiesQuery, IVerticalsQuery verticalsQuery)
     : base(executeMemberSearchCommand, employerMemberViewsQuery, memberStatusQuery)
 {
     _candidateBlockListsQuery = candidateBlockListsQuery;
     _communitiesQuery         = communitiesQuery;
     _verticalsQuery           = verticalsQuery;
 }
Exemplo n.º 3
0
 public MemberActivityFiltersQuery(ICandidateBlockListsQuery candidateBlockListsQuery, ICandidateFoldersQuery candidateFoldersQuery, ICandidateFlagListsQuery candidateFlagListsQuery, ICandidateNotesQuery candidateNotesQuery, IEmployerMemberViewsQuery employerMemberViewsQuery, IEmployerCreditsQuery employerCreditsQuery, IJobAdApplicantsQuery jobAdApplicantsQuery)
 {
     _candidateBlockListsQuery = candidateBlockListsQuery;
     _candidateFoldersQuery    = candidateFoldersQuery;
     _candidateFlagListsQuery  = candidateFlagListsQuery;
     _candidateNotesQuery      = candidateNotesQuery;
     _employerMemberViewsQuery = employerMemberViewsQuery;
     _employerCreditsQuery     = employerCreditsQuery;
     _jobAdApplicantsQuery     = jobAdApplicantsQuery;
 }
Exemplo n.º 4
0
 public BlockListsApiController(ICandidateListsCommand candidateListsCommand, ICandidateBlockListsQuery candidateBlockListsQuery)
 {
     _candidateListsCommand    = candidateListsCommand;
     _candidateBlockListsQuery = candidateBlockListsQuery;
 }