コード例 #1
0
 public EmployerCreditsCommand(ICreditsQuery creditsQuery, IAllocationsQuery allocationsQuery, IExercisedCreditsCommand exercisedCreditsCommand, IExercisedCreditsQuery exercisedCreditsQuery, IEmployersQuery employersQuery, IRecruitersQuery recruitersQuery, IJobAdApplicantsQuery jobAdApplicantsQuery, int maxCreditsPerJobAd)
     : base(creditsQuery, allocationsQuery)
 {
     _exercisedCreditsCommand = exercisedCreditsCommand;
     _exercisedCreditsQuery   = exercisedCreditsQuery;
     _employersQuery          = employersQuery;
     _recruitersQuery         = recruitersQuery;
     _jobAdApplicantsQuery    = jobAdApplicantsQuery;
     _maxCreditsPerJobAd      = maxCreditsPerJobAd;
 }
コード例 #2
0
 public OrganisationCreditsController(IOrganisationsQuery organisationsQuery, IEmployersQuery employersQuery, IMembersQuery membersQuery, IJobAdsQuery jobAdsQuery, IAllocationsQuery allocationsQuery, IAllocationsCommand allocationsCommand, ICreditsQuery creditsQuery, IExercisedCreditsQuery exercisedCreditsQuery, IOrdersQuery ordersQuery)
 {
     _organisationsQuery    = organisationsQuery;
     _employersQuery        = employersQuery;
     _membersQuery          = membersQuery;
     _jobAdsQuery           = jobAdsQuery;
     _allocationsQuery      = allocationsQuery;
     _allocationsCommand    = allocationsCommand;
     _creditsQuery          = creditsQuery;
     _exercisedCreditsQuery = exercisedCreditsQuery;
     _ordersQuery           = ordersQuery;
 }
コード例 #3
0
 public EmployerMemberViewsQuery(IEmployerViewsRepository repository, IMembersQuery membersQuery, IRepresentativesQuery representativesQuery, IRecruitersQuery recruitersQuery, IContendersQuery contendersQuery, IExercisedCreditsQuery exercisedCreditsQuery, IEmployerCreditsQuery employerCreditsQuery, ICandidatesQuery candidatesQuery, IResumesQuery resumeQuery, ICandidateFoldersQuery candidateFoldersQuery, ICandidateFlagListsQuery candidateFlagListsQuery, ICandidateNotesQuery candidateNotesQuery)
 {
     _repository              = repository;
     _membersQuery            = membersQuery;
     _representativesQuery    = representativesQuery;
     _recruitersQuery         = recruitersQuery;
     _contendersQuery         = contendersQuery;
     _exercisedCreditsQuery   = exercisedCreditsQuery;
     _employerCreditsQuery    = employerCreditsQuery;
     _candidatesQuery         = candidatesQuery;
     _resumesQuery            = resumeQuery;
     _candidateFoldersQuery   = candidateFoldersQuery;
     _candidateFlagListsQuery = candidateFlagListsQuery;
     _candidateNotesQuery     = candidateNotesQuery;
 }
コード例 #4
0
 public ContendersQuery(IContenderListsRepository repository, IExercisedCreditsQuery exercisedCreditsQuery)
 {
     _repository            = repository;
     _exercisedCreditsQuery = exercisedCreditsQuery;
 }