Ejemplo n.º 1
0
 public CandidateFilesController(IEmployerMemberViewsCommand employerMemberViewsCommand, IEmployerMemberViewsQuery employerMemberViewsQuery, IEmployerResumeFilesQuery employerResumeFilesQuery, IFilesQuery filesQuery)
 {
     _employerMemberViewsCommand = employerMemberViewsCommand;
     _employerMemberViewsQuery   = employerMemberViewsQuery;
     _employerResumeFilesQuery   = employerResumeFilesQuery;
     _filesQuery = filesQuery;
 }
Ejemplo n.º 2
0
 public CandidatesApiController(IEmployerMemberViewsCommand employerMemberViewsCommand, IEmployerMemberViewsQuery employerMemberViewsQuery, IEmployerMemberContactsCommand employerMemberContactsCommand, IEmployerResumeFilesQuery employerResumeFilesQuery, IEmailsCommand emailsCommand, IJobAdApplicantsQuery jobAdApplicantsQuery)
 {
     _employerMemberViewsCommand    = employerMemberViewsCommand;
     _employerMemberViewsQuery      = employerMemberViewsQuery;
     _employerMemberContactsCommand = employerMemberContactsCommand;
     _employerResumeFilesQuery      = employerResumeFilesQuery;
     _emailsCommand        = emailsCommand;
     _jobAdApplicantsQuery = jobAdApplicantsQuery;
 }
Ejemplo n.º 3
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;
 }