示例#1
0
 public DoctorService(IHttpContextManager httpContextManager, IUnitOfWork unitOfWork, IMapper mapper, IExpertiseService expertiseService)
 {
     _httpContextManager = httpContextManager;
     _unitOfWork         = unitOfWork;
     _mapper             = mapper;
     _expertiseService   = expertiseService;
     _doctors            = unitOfWork.Set <Doctor>();
 }
 public CommonUtils(BanobatDbContext dbContext, IShiftCenterService polyclinicService, IExpertiseService expertiseService, IPlaceService placeService, IWorkContext workContext)
 {
     _dbContext         = dbContext;
     _polyclinicService = polyclinicService;
     _expertiseService  = expertiseService;
     _placeService      = placeService;
     _workContext       = workContext;
 }
示例#3
0
 public DoctorsController(IHospitalService hospitalService,
                          IExpertiseService expertiseService,
                          IPlaceService placeService,
                          IServiceSupplyService serviceSupplyService,
                          IDoctorServiceManager doctorServiceManager,
                          IWorkContext workContext)
 {
     _hospitalService      = hospitalService;
     _expertiseService     = expertiseService;
     _placeService         = placeService;
     _serviceSupplyService = serviceSupplyService;
     _doctorServiceManager = doctorServiceManager;
     _workContext          = workContext;
 }
 public ClinicianController(IClinicianService clinicianService, UserManager <ApplicationUser> userManager, IEnrollmentService enrollmentService, IAppointmentService appointmentService, IClinicianAvailabilityService clinicianAvailabilityService, IProfileService profileService, IServiceCostService serviceCostService, IProviderCategoryService providerCategoryService, IApplicantService applicantService, ILookUpService lookUpService, IApplicantDocumentService applicantDocumentService, IExpertiseService expertiseService, IClinicianDocumentService profileDocumentService, IEmailSender emailSender, IPopulationService populationService, ISpecialtyService specialtyService, IEducationService educationService, ILanguageService languageService, IPracticeService practiceService, IOtherActivitiesService otherActivitiesService, ILogger <ApplicantController> log, IClinicService clinicService)
 {
     _clinicianService             = clinicianService;
     _enrollmentService            = enrollmentService;
     _userManager                  = userManager;
     _appointmentService           = appointmentService;
     _clinicianAvailabilityService = clinicianAvailabilityService;
     _profileService               = profileService;
     _serviceCostService           = serviceCostService;
     _providerCategoryService      = providerCategoryService;
     _applicantService             = applicantService;
     _lookUpService                = lookUpService;
     _expertiseService             = expertiseService;
     _applicantDocumentService     = applicantDocumentService;
     _profileDocumentService       = profileDocumentService;
     _emailSender                  = emailSender;
     _specialtyService             = specialtyService;
     _populationService            = populationService;
     _educationService             = educationService;
     _languageService              = languageService;
     _practiceService              = practiceService;
     _otherActivitiesService       = otherActivitiesService;
     _clinicService                = clinicService;
 }
示例#5
0
 public ExpertiseController(
     IServiceProvider serviceProvider,
     IExpertiseService expertiseService) : base(serviceProvider)
 {
     this.expertiseService = expertiseService;
 }
示例#6
0
 public ExpertiseController(IExpertiseService expertiseService)
 {
     _expertiseService = expertiseService;
 }
示例#7
0
 public WhatWeDoController(IServiceProvider serviceProvider, IServicesService servicesService, IExpertiseService expertiseService) : base(serviceProvider)
 {
     this.servicesService  = servicesService;
     this.expertiseService = expertiseService;
 }
示例#8
0
 public ExpertiseFactory(IExpertiseService expertiseService, IMapper mapper)
 {
     _expertiseService = expertiseService;
     _mapper           = mapper;
 }
 public ExpertiseController(IExpertiseService expertiseService, ICommonUtils commonUtils)
 {
     _expertiseService = expertiseService;
     _commonUtils      = commonUtils;
 }
示例#10
0
 public DoctorFactory(IDoctorService doctorService, IMapper mapper, IExpertiseService expertiseService)
 {
     _doctorService    = doctorService;
     _mapper           = mapper;
     _expertiseService = expertiseService;
 }