예제 #1
0
 public ResumesApiController(IFilesCommand filesCommand, IFilesQuery filesQuery, ICandidateResumeFilesCommand candidateResumeFilesCommand, IParseResumesCommand parseResumesCommand, IParsedResumesCommand parsedResumesCommand)
 {
     _filesCommand = filesCommand;
     _filesQuery   = filesQuery;
     _candidateResumeFilesCommand = candidateResumeFilesCommand;
     _parseResumesCommand         = parseResumesCommand;
     _parsedResumesCommand        = parsedResumesCommand;
 }
예제 #2
0
 public CandidateResumesCommand(ICandidatesRepository repository, ICandidateResumeFilesCommand candidateResumeFilesCommand, ICandidateResumeFilesQuery candidateResumeFilesQuery, IResumesCommand resumesCommand, IResumesQuery resumesQuery)
 {
     _repository = repository;
     _candidateResumeFilesCommand = candidateResumeFilesCommand;
     _candidateResumeFilesQuery   = candidateResumeFilesQuery;
     _resumesCommand = resumesCommand;
     _resumesQuery   = resumesQuery;
 }
예제 #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 ProfilesApiController(ILocationQuery locationQuery, IIndustriesQuery industriesQuery, IResumesQuery resumesQuery, ICandidatesQuery candidatesQuery, IResumeFilesQuery resumeFilesQuery, IMemberStatusQuery memberStatusQuery, IEmailsCommand emailsCommand, IMemberAccountsCommand memberAccountsCommand, IAccountVerificationsCommand accountVerificationsCommand, ICandidatesCommand candidatesCommand, ICandidateResumesCommand candidateResumesCommand, ICandidateResumeFilesCommand candidateResumeFilesCommand, IParseResumesCommand parseResumesCommand, IMemberPhotosCommand memberPhotosCommand, IFilesCommand filesCommand, IFilesQuery filesQuery, ISettingsQuery settingsQuery, ISettingsCommand settingsCommand)
 {
     _locationQuery               = locationQuery;
     _industriesQuery             = industriesQuery;
     _resumesQuery                = resumesQuery;
     _candidatesQuery             = candidatesQuery;
     _resumeFilesQuery            = resumeFilesQuery;
     _memberStatusQuery           = memberStatusQuery;
     _emailsCommand               = emailsCommand;
     _memberAccountsCommand       = memberAccountsCommand;
     _accountVerificationsCommand = accountVerificationsCommand;
     _candidatesCommand           = candidatesCommand;
     _candidateResumesCommand     = candidateResumesCommand;
     _candidateResumeFilesCommand = candidateResumeFilesCommand;
     _parseResumesCommand         = parseResumesCommand;
     _memberPhotosCommand         = memberPhotosCommand;
     _filesCommand                = filesCommand;
     _filesQuery      = filesQuery;
     _settingsQuery   = settingsQuery;
     _settingsCommand = settingsCommand;
 }