예제 #1
0
 public JobAdsApiController(IJobAdsQuery jobAdsQuery, IJobAdViewsCommand jobAdViewsCommand, IApplicationsCommand applicationsCommand, IVisitorStatusQuery visitorStatusQuery, IEmailsCommand emailsCommand)
 {
     _jobAdsQuery         = jobAdsQuery;
     _jobAdViewsCommand   = jobAdViewsCommand;
     _applicationsCommand = applicationsCommand;
     _visitorStatusQuery  = visitorStatusQuery;
     _emailsCommand       = emailsCommand;
 }
 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;
 }
예제 #3
0
 public InternalApplicationsCommand(IApplicationsCommand applicationsCommand, IJobAdApplicationSubmissionsCommand jobAdApplicationSubmissionsCommand, IJobAdApplicationSubmissionsQuery jobAdApplicationSubmissionsQuery, ICandidatesQuery candidatesQuery, ICandidateResumesCommand candidateResumesCommand, ICandidateResumeFilesCommand candidateResumeFilesCommand, ICandidateResumeFilesQuery candidateResumeFilesQuery, IParseResumesCommand parseResumesCommand, IFilesQuery filesQuery)
 {
     _applicationsCommand = applicationsCommand;
     _jobAdApplicationSubmissionsCommand = jobAdApplicationSubmissionsCommand;
     _jobAdApplicationSubmissionsQuery   = jobAdApplicationSubmissionsQuery;
     _candidatesQuery             = candidatesQuery;
     _candidateResumesCommand     = candidateResumesCommand;
     _candidateResumeFilesCommand = candidateResumeFilesCommand;
     _candidateResumeFilesQuery   = candidateResumeFilesQuery;
     _parseResumesCommand         = parseResumesCommand;
     _filesQuery = filesQuery;
 }
예제 #4
0
 public JobAdApplicationsManager(IJobAdsCommand jobAdsCommand, IApplicationsCommand applicationsCommand, IMemberApplicationsQuery memberApplicationsQuery, IMembersQuery membersQuery, ICandidatesQuery candidatesQuery, IResumesQuery resumesQuery, IEmployerResumeFilesQuery employerResumeFilesQuery, IAnonymousUsersQuery anonymousUsersQuery, IFilesQuery filesQuery, ILocationQuery locationQuery)
 {
     _jobAdsCommand            = jobAdsCommand;
     _applicationsCommand      = applicationsCommand;
     _memberApplicationsQuery  = memberApplicationsQuery;
     _membersQuery             = membersQuery;
     _candidatesQuery          = candidatesQuery;
     _resumesQuery             = resumesQuery;
     _employerResumeFilesQuery = employerResumeFilesQuery;
     _anonymousUsersQuery      = anonymousUsersQuery;
     _filesQuery    = filesQuery;
     _locationQuery = locationQuery;
 }