public ExecuteEmployerReportsCommand(IDbConnectionFactory connectionFactory, ICreditReportsQuery creditReportsQuery, IJobAdReportsQuery jobAdReportsQuery, IRecruitersQuery recruitersQuery, IOrganisationsQuery organisationsQuery) { _connectionFactory = connectionFactory; _creditReportsQuery = creditReportsQuery; _jobAdReportsQuery = jobAdReportsQuery; _recruitersQuery = recruitersQuery; _organisationsQuery = organisationsQuery; }
public EmailEmployerNewsletterTask(IEmailsCommand emailsCommand, IEmployersQuery employersQuery, IUserAccountsQuery userAccountsQuery, IAllocationsQuery allocationsQuery, IRecruitersQuery recruitersQuery) : base(EventSource, emailsCommand) { _employersQuery = employersQuery; _userAccountsQuery = userAccountsQuery; _allocationsQuery = allocationsQuery; _recruitersQuery = recruitersQuery; }
public ExpiringCreditsEmailTask(IEmailsCommand emailsCommand, IEmployerCreditsQuery employerCreditsQuery, IEmployersQuery employersQuery, IOrganisationsQuery organisationsQuery, IRecruitersQuery recruitersQuery, IAdministratorsQuery administratorsQuery) : base(EventSource, emailsCommand) { _employerCreditsQuery = employerCreditsQuery; _employersQuery = employersQuery; _organisationsQuery = organisationsQuery; _recruitersQuery = recruitersQuery; _administratorsQuery = administratorsQuery; }
public JobBoardActivityReportRunner(ICreditReportsQuery creditReportsQuery, IJobAdReportsQuery jobAdReportsQuery, IRecruitersQuery recruitersQuery, IOrganisationsQuery organisationsQuery, JobBoardActivityReport report, bool includeCredits, IOrganisation organisation, IAdministrator accountManager, DateRange dateRange) : base(organisation, accountManager, dateRange) { _creditReportsQuery = creditReportsQuery; _jobAdReportsQuery = jobAdReportsQuery; _recruitersQuery = recruitersQuery; _organisationsQuery = organisationsQuery; _report = report; _includeCredits = includeCredits; }
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; }
public ProductsController(IEmployerOrdersQuery employerOrdersQuery, IProductsCommand productsCommand, IOrdersQuery ordersQuery, ICreditsQuery creditsQuery, IAllocationsQuery allocationsQuery, IRecruitersQuery recruitersQuery, IOrganisationsQuery organisationsQuery) { _employerOrdersQuery = employerOrdersQuery; _productsCommand = productsCommand; _ordersQuery = ordersQuery; _creditsQuery = creditsQuery; _allocationsQuery = allocationsQuery; _recruitersQuery = recruitersQuery; _organisationsQuery = organisationsQuery; }
public CreditsHandler(IEmailsCommand emailsCommand, IEmployersQuery employersQuery, IOrganisationsQuery organisationsQuery, IRecruitersQuery recruitersQuery, IAdministratorsQuery administratorsQuery, IAllocationsCommand allocationsCommand, IAllocationsQuery allocationsQuery, ICreditsQuery creditsQuery, IJobAdsCommand jobAdsCommand, IJobAdsQuery jobAdsQuery) { _emailsCommand = emailsCommand; _employersQuery = employersQuery; _organisationsQuery = organisationsQuery; _recruitersQuery = recruitersQuery; _administratorsQuery = administratorsQuery; _allocationsCommand = allocationsCommand; _allocationsQuery = allocationsQuery; _creditsQuery = creditsQuery; _jobAdsCommand = jobAdsCommand; _jobAdsQuery = jobAdsQuery; }
public EmployersController(IEmployersQuery employersQuery, ILoginCredentialsQuery loginCredentialsQuery, ICandidateReportsQuery candidateReportsQuery, IMemberSearchesQuery memberSearchesQuery, IExecuteMemberSearchCommand executeMemberSearchCommand, IOrganisationsQuery organisationsQuery, IRecruitersQuery recruitersQuery, IUserAccountsQuery userAccountsQuery, IMemberSearchReportsQuery memberSearchReportsQuery, IEmployerMemberAccessReportsQuery employerMemberAccessReportsQuery) { _employersQuery = employersQuery; _loginCredentialsQuery = loginCredentialsQuery; _candidateReportsQuery = candidateReportsQuery; _memberSearchesQuery = memberSearchesQuery; _executeMemberSearchCommand = executeMemberSearchCommand; _organisationsQuery = organisationsQuery; _recruitersQuery = recruitersQuery; _userAccountsQuery = userAccountsQuery; _memberSearchReportsQuery = memberSearchReportsQuery; _employerMemberAccessReportsQuery = employerMemberAccessReportsQuery; }
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; }
public UserEmailsQuery(ISettingsQuery settingsQuery, IRecruitersQuery recruitersQuery) { _settingsQuery = settingsQuery; _recruitersQuery = recruitersQuery; }
public ExecuteEmployerSearchCommand(IEmployersRepository repository, IRecruitersQuery recruitersQuery, IExecuteOrganisationSearchCommand executeOrganisationSearchCommand) : base(recruitersQuery) { _repository = repository; _executeOrganisationSearchCommand = executeOrganisationSearchCommand; }
public EmployersQuery(IEmployersRepository repository, IRecruitersQuery recruitersQuery, IOrganisationsQuery organisationsQuery) : base(recruitersQuery) { _repository = repository; _organisationsQuery = organisationsQuery; }
public EmployerCreditsQuery(ICreditsQuery creditsQuery, IAllocationsQuery allocationsQuery, IRecruitersQuery recruitersQuery) : base(creditsQuery, allocationsQuery) { _recruitersQuery = recruitersQuery; }
protected EmployerRecruitersQuery(IRecruitersQuery recruitersQuery) { _recruitersQuery = recruitersQuery; }