Ejemplo 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;
 }
Ejemplo n.º 2
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;
 }
Ejemplo n.º 3
0
 public UpdateFeaturedTask(IFeaturedCommand featuredCommand, IJobAdsQuery jobAdsQuery, IJobAdReportsQuery jobAdReportsQuery, IAccountReportsQuery accountReportsQuery, IEmployerMemberAccessReportsQuery employerMemberAccessReportsQuery, IMemberSearchReportsQuery memberSearchReportsQuery)
     : base(EventSource)
 {
     _featuredCommand     = featuredCommand;
     _jobAdsQuery         = jobAdsQuery;
     _jobAdReportsQuery   = jobAdReportsQuery;
     _accountReportsQuery = accountReportsQuery;
     _employerMemberAccessReportsQuery = employerMemberAccessReportsQuery;
     _memberSearchReportsQuery         = memberSearchReportsQuery;
 }
Ejemplo n.º 4
0
 public DailyReportsQuery(IResumeReportsQuery resumeReportsQuery, IJobAdSearchReportsQuery jobAdSearchReportsQuery, IMemberSearchReportsQuery memberSearchReportsQuery, IJobAdReportsQuery jobAdReportsQuery, IEmployerMemberAccessReportsQuery employerMemberAccessReportsQuery, INetworkingReportsQuery networkingReportsQuery, IOrderReportsQuery orderReportsQuery, ICommunicationReportsQuery communicationReportsQuery, IRegistrationReportsQuery registrationReportsQuery, IAccountReportsQuery accountReportsQuery, IChannelsQuery channelsQuery, IIntegrationQuery integrationQuery, IJobAdIntegrationReportsQuery jobAdIntegrationReportsQuery)
 {
     _resumeReportsQuery               = resumeReportsQuery;
     _jobAdSearchReportsQuery          = jobAdSearchReportsQuery;
     _memberSearchReportsQuery         = memberSearchReportsQuery;
     _jobAdReportsQuery                = jobAdReportsQuery;
     _employerMemberAccessReportsQuery = employerMemberAccessReportsQuery;
     _networkingReportsQuery           = networkingReportsQuery;
     _orderReportsQuery                = orderReportsQuery;
     _communicationReportsQuery        = communicationReportsQuery;
     _registrationReportsQuery         = registrationReportsQuery;
     _accountReportsQuery              = accountReportsQuery;
     _channelsQuery                = channelsQuery;
     _integrationQuery             = integrationQuery;
     _jobAdIntegrationReportsQuery = jobAdIntegrationReportsQuery;
 }
Ejemplo n.º 5
0
 public MembersController(IFilesQuery filesQuery, IEmployerMemberAccessReportsQuery employerMemberAccessReportsQuery, IMembersQuery membersQuery, ICandidatesQuery candidatesQuery, IResumesQuery resumesQuery, IMemberStatusQuery memberStatusQuery, IJobAdSearchesQuery jobAdSearchesQuery, IExecuteJobAdSearchCommand executeJobAdSearchCommand, IJobAdsQuery jobAdsQuery, IJobAdReportsQuery jobAdReportsQuery, IMemberApplicationsQuery memberApplicationsQuery, IEmailVerificationsCommand emailVerificationsCommand, IEmailVerificationsQuery emailVerificationsQuery)
 {
     _filesQuery = filesQuery;
     _employerMemberAccessReportsQuery = employerMemberAccessReportsQuery;
     _membersQuery              = membersQuery;
     _candidatesQuery           = candidatesQuery;
     _resumesQuery              = resumesQuery;
     _memberStatusQuery         = memberStatusQuery;
     _jobAdSearchesQuery        = jobAdSearchesQuery;
     _executeJobAdSearchCommand = executeJobAdSearchCommand;
     _jobAdsQuery               = jobAdsQuery;
     _jobAdReportsQuery         = jobAdReportsQuery;
     _memberApplicationsQuery   = memberApplicationsQuery;
     _emailVerificationsCommand = emailVerificationsCommand;
     _emailVerificationsQuery   = emailVerificationsQuery;
 }
Ejemplo n.º 6
0
 public ExternalJobRedirectCountTask(IJobAdReportsQuery jobAdReportsQuery, IIntegrationQuery integrationQuery)
     : base(EventSource)
 {
     _jobAdReportsQuery = jobAdReportsQuery;
     _integrationQuery  = integrationQuery;
 }