示例#1
0
 public JobAdApplicantsQuery(IApplicationsQuery applicationsQuery, IContenderListsCommand contendersListCommand, IContenderListsQuery contenderListsQuery, IMembersQuery membersQuery, ICandidateBlockListsQuery blockListsQuery)
     : base(contendersListCommand, contenderListsQuery)
 {
     _applicationsQuery = applicationsQuery;
     _membersQuery      = membersQuery;
     _blockListsQuery   = blockListsQuery;
 }
示例#2
0
 public CandidateListsCommand(IContenderListsCommand contenderListsCommand, IContenderListsQuery contenderListsQuery)
 {
     _contenderListsCommand = contenderListsCommand;
     _contenderListsQuery   = contenderListsQuery;
 }
示例#3
0
 public JobAdApplicantsCommand(IContenderListsCommand contenderListsCommand, IContenderListsQuery contenderListsQuery, IJobAdApplicantsQuery jobApplicantsQuery)
     : base(contenderListsCommand, contenderListsQuery)
 {
     _jobAdApplicantsQuery = jobApplicantsQuery;
 }
 public JobAdApplicationSubmissionsCommand(IApplicationsCommand applicationsCommand, IApplicationsQuery applicationsQuery, IContenderListsCommand contenderListsCommand, IContenderListsQuery contenderListsQuery, IEmployerCreditsCommand employerCreditsCommand, IEmployerCreditsQuery employerCreditsQuery, IJobAdProcessingQuery jobAdProcessingQuery)
     : base(contenderListsCommand, contenderListsQuery)
 {
     _applicationsCommand    = applicationsCommand;
     _applicationsQuery      = applicationsQuery;
     _employerCreditsCommand = employerCreditsCommand;
     _employerCreditsQuery   = employerCreditsQuery;
     _jobAdProcessingQuery   = jobAdProcessingQuery;
 }
示例#5
0
 protected JobAdApplicantsComponent(IContenderListsCommand contenderListsCommand, IContenderListsQuery contenderListsQuery)
 {
     _contenderListsCommand = contenderListsCommand;
     _contenderListsQuery   = contenderListsQuery;
 }
示例#6
0
 public JobAdApplicationSubmissionsQuery(IContenderListsCommand contenderListsCommand, IContenderListsQuery contenderListsQuery)
     : base(contenderListsCommand, contenderListsQuery)
 {
 }