예제 #1
0
 public HomeController(ILoggingService loggingService, IUnitOfWorkManager unitOfWorkManager,
                       IActivityService activityService, IMembershipService membershipService,
                       ITopicService topicService, ILocalizationService localizationService, IRoleService roleService,
                       ISettingsService settingsService, ICategoryService categoryService, IHospitalFeeService hospitalFeeService,
                       IDoctorService doctorService, IRecruitmentService recruitmentService, IMedicalPackageService medicalPackageService,
                       IEducationService educationService, IBannerService bannerService)
     : base(loggingService, unitOfWorkManager, membershipService, localizationService, roleService,
            settingsService)
 {
     _topicService          = topicService;
     _categoryService       = categoryService;
     _activityService       = activityService;
     _hospitalFeeService    = hospitalFeeService;
     _doctorService         = doctorService;
     _recruitmentService    = recruitmentService;
     _medicalPackageService = medicalPackageService;
     _educationService      = educationService;
     _bannerService         = bannerService;
 }
예제 #2
0
 public HomeController(IGatherService gatherService, IRecruitmentService recruitmentService, IPitchService pitchService)
 {
     this.gatherService      = gatherService;
     this.recruitmentService = recruitmentService;
     this.pitchService       = pitchService;
 }
 public RecruitmentController(IRecruitmentService service, ILogger <RecruitmentController> logger)
 {
     this.service = service;
     _logger      = logger;
 }
 public RecruitmentController(IRecruitmentService recruitmentService)
 {
     this._recruitmentService = recruitmentService;
 }
예제 #5
0
 public EmployerController(IEmployerService employerService, IRecruitmentService recruitmentService)
 {
     _employerService    = employerService;
     _recruitmentService = recruitmentService;
 }
예제 #6
0
 public RecruitmentController(IRecruitmentService recruitmentService, IFCMService fcmService)
 {
     _recruitmentService = recruitmentService;
     _fcmService         = fcmService;
 }
예제 #7
0
 public RecruitmentsController(IRecruitmentService recruitmentService, UserManager <User> userManager)
 {
     this.recruitmentService = recruitmentService;
     this.userManager        = userManager;
 }
예제 #8
0
 public DashboardController(IRecruitmentService recruitmentService, IUserService userService, IGatherService gatherService)
 {
     this.recruitmentService = recruitmentService;
     this.userService        = userService;
     this.gatherService      = gatherService;
 }
 public RecruitmentInfoController(IRecruitmentService recruitmentService, IHttpContextAccessor httpContextAccessor)
 {
     _recruitmentService  = recruitmentService;
     _httpContextAccessor = httpContextAccessor;
 }
 public AdminRecruitmentController(IWorkContextAccessor workContextAccessor, IRecruitmentService service) :
     base(workContextAccessor)
 {
     this.service   = service;
     this.TableName = "tblRecruitment";
 }
예제 #11
0
 public HomeController(IRecruitmentService recruitmentService, IExamService examService)
 {
     this._recruitmentService = recruitmentService;
     this._examService        = examService;
 }