public InterviewController(IInterviewService interviewService, ISalesPersonService salesPersonService, ICompanyService companyService, IInterviewerService interviewerService, IInterviewFairService interviewFairService, IFairService fairService)
 {
     _interviewService     = interviewService;
     _salesPersonService   = salesPersonService;
     _companyService       = companyService;
     _interviewerService   = interviewerService;
     _interviewFairService = interviewFairService;
     _fairService          = fairService;
 }
Esempio n. 2
0
 public FormController(IFormService formService,
                       ISurveyGeographyService surveyGeographyService,
                       IHousingTypeService housingTypeService,
                       IDistrictService districtService,
                       IInterviewerService interviewerService)
 {
     FormService            = formService;
     SurveyGeographyService = surveyGeographyService;
     HousingTypeService     = housingTypeService;
     DistrictService        = districtService;
     InterviewerService     = interviewerService;
 }
 public RoleServiceModelBuilder(
     IWorkerService workerService,
     IApplicantService applicantService,
     ICompanyService companyService,
     IRecruiterService recruiterService,
     IInterviewerService interviewerService)
 {
     _workerService      = workerService;
     _applicantService   = applicantService;
     _companyService     = companyService;
     _recruiterService   = recruiterService;
     _interviewerService = interviewerService;
 }
 public InterviewerController(IInterviewerService interviewerService) : base(interviewerService)
 {
 }
 public InterviewerController(IInterviewerService interviewerService)
 {
     _interviewerService = interviewerService;
 }
 public InterviewerController(IInterviewerService service)
 {
     this.service = service;
 }