Exemplo n.º 1
0
 public ExecuteEmployerReportsCommand(IDbConnectionFactory connectionFactory, ICreditReportsQuery creditReportsQuery, IJobAdReportsQuery jobAdReportsQuery, IRecruitersQuery recruitersQuery, IOrganisationsQuery organisationsQuery)
 {
     _connectionFactory  = connectionFactory;
     _creditReportsQuery = creditReportsQuery;
     _jobAdReportsQuery  = jobAdReportsQuery;
     _recruitersQuery    = recruitersQuery;
     _organisationsQuery = organisationsQuery;
 }
Exemplo n.º 2
0
 public EmailEmployerNewsletterTask(IEmailsCommand emailsCommand, IEmployersQuery employersQuery, IUserAccountsQuery userAccountsQuery, IAllocationsQuery allocationsQuery, IRecruitersQuery recruitersQuery)
     : base(EventSource, emailsCommand)
 {
     _employersQuery    = employersQuery;
     _userAccountsQuery = userAccountsQuery;
     _allocationsQuery  = allocationsQuery;
     _recruitersQuery   = recruitersQuery;
 }
Exemplo n.º 3
0
 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;
 }
Exemplo n.º 4
0
 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;
 }
Exemplo n.º 5
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;
 }
Exemplo n.º 6
0
 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;
 }
Exemplo n.º 7
0
 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;
 }
Exemplo n.º 8
0
 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;
 }
Exemplo n.º 9
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;
 }
Exemplo n.º 10
0
 public UserEmailsQuery(ISettingsQuery settingsQuery, IRecruitersQuery recruitersQuery)
 {
     _settingsQuery   = settingsQuery;
     _recruitersQuery = recruitersQuery;
 }
Exemplo n.º 11
0
 public ExecuteEmployerSearchCommand(IEmployersRepository repository, IRecruitersQuery recruitersQuery, IExecuteOrganisationSearchCommand executeOrganisationSearchCommand)
     : base(recruitersQuery)
 {
     _repository = repository;
     _executeOrganisationSearchCommand = executeOrganisationSearchCommand;
 }
Exemplo n.º 12
0
 public EmployersQuery(IEmployersRepository repository, IRecruitersQuery recruitersQuery, IOrganisationsQuery organisationsQuery)
     : base(recruitersQuery)
 {
     _repository         = repository;
     _organisationsQuery = organisationsQuery;
 }
Exemplo n.º 13
0
 public EmployerCreditsQuery(ICreditsQuery creditsQuery, IAllocationsQuery allocationsQuery, IRecruitersQuery recruitersQuery)
     : base(creditsQuery, allocationsQuery)
 {
     _recruitersQuery = recruitersQuery;
 }
Exemplo n.º 14
0
 protected EmployerRecruitersQuery(IRecruitersQuery recruitersQuery)
 {
     _recruitersQuery = recruitersQuery;
 }