예제 #1
0
 public UsersController(IPersonService userService, IClinicService clinicService, BanobatDbContext dbContext) : base(clinicService)
 {
     _userService   = userService;
     _clinicService = clinicService;
     logger         = LogManager.GetCurrentClassLogger();
     _dbContext     = dbContext;
 }
예제 #2
0
 public ClinicController(
     IClinicService clinicService,
     UserManager <ApplicationUser> userManager)
 {
     this.clinicService = clinicService;
     this.userManager   = userManager;
 }
예제 #3
0
 public ClinicController(
     IClinicService clinicService,
     IClinicClinicianService clinicClinicianServiceV1)
 {
     _clinicService            = clinicService;
     _clinicClinicianServiceV1 = clinicClinicianServiceV1;
 }
예제 #4
0
        public MessageController(IClinicService clinicService, IShiftCenterMessageService polyclinicMessageService) : base(clinicService)
        {
            _clinicService            = clinicService;
            _polyclinicMessageService = polyclinicMessageService;

            logger = LogManager.GetCurrentClassLogger();
        }
 public HomeController(IPersonService userService,
                       IClinicService clinicService,
                       IWorkContext workContext, BanobatDbContext dbContext) : base(clinicService)
 {
     _userService = userService;
     _workContext = workContext;
     logger       = LogManager.GetCurrentClassLogger();
     _dbContext   = dbContext;
 }
예제 #6
0
 public DentistController(IDentistService dentistService,
                          ISpecialtyService specialtyService,
                          IClinicService clinicService,
                          IRatingService ratingService)
 {
     this._dentistService   = dentistService;
     this._specialtyService = specialtyService;
     this._clinicService    = clinicService;
     this._ratingService    = ratingService;
 }
예제 #7
0
 public ClinicController(IClinicService clinicService,
                         IDentistService dentistService,
                         IAppointmentService appointmentService,
                         ISpecialtyService specialtyService,
                         IRatingService ratingService)
 {
     this._clinicService      = clinicService;
     this._dentistService     = dentistService;
     this._appointmentService = appointmentService;
     this._specialtyService   = specialtyService;
     this._ratingService      = ratingService;
 }
 public HomeController(IHospitalService hospitalService,
                       IClinicService clinicService,
                       IShiftCenterService polyclinicService,
                       IAppointmentService appointmentService,
                       IServiceSupplyService serviceSupplyService,
                       IPersonService userService) : base(hospitalService)
 {
     _clinicService        = clinicService;
     _polyclinicService    = polyclinicService;
     _appointmentService   = appointmentService;
     _serviceSupplyService = serviceSupplyService;
     _userService          = userService;
 }
예제 #9
0
 public DentistController(UserManager <DentHubUser> userManager,
                          IDentistService dentistService,
                          IPatientService patientService,
                          IAppointmentService appointmentService,
                          IRatingService ratingService,
                          IClinicService clinicService)
 {
     this._userManager        = userManager;
     this._dentistService     = dentistService;
     this._patientService     = patientService;
     this._appointmentService = appointmentService;
     this._ratingService      = ratingService;
     this._clinicService      = clinicService;
 }
예제 #10
0
 public AppointmentController(IClinicService clinicService,
                              //IRepository<DentHubUser> userRepository,
                              UserManager <DentHubUser> userManager,
                              IAppointmentService appointmentService,
                              IDentistService dentistService,
                              IPatientService patientService)
 {
     this._userManager   = userManager;
     this._clinicService = clinicService;
     //this._userRepository = userRepository;
     this._appointmentService = appointmentService;
     this._dentistService     = dentistService;
     this._patientService     = patientService;
 }
 public HomeController(
     IGetCountsService countsService,
     IAnimalService animalService,
     IClinicService clinicService,
     IPublicationService publicationService,
     IHotelService hotelService,
     ISosSignalService sosSignalService)
 {
     this.countsService      = countsService;
     this.animalService      = animalService;
     this.clinicService      = clinicService;
     this.publicationService = publicationService;
     this.hotelService       = hotelService;
     this.sosSignalService   = sosSignalService;
 }
 public SpecialityController(IHospitalService hospitalService,
                             IClinicService clinicService,
                             IShiftCenterService polyclinicService,
                             ICommonUtils commonUtils,
                             IPersonService userService,
                             IWorkContext workContext, BanobatDbContext dbContext) : base(workContext)
 {
     _hospitalService   = hospitalService;
     _clinicService     = clinicService;
     _polyclinicService = polyclinicService;
     _commonUtils       = commonUtils;
     _userService       = userService;
     _workContext       = workContext;
     _dbContext         = dbContext;
 }
예제 #13
0
 public CommonClinicController(IAppointmentService appointmentService,
                               ICommonUtils commonUtils,
                               IHospitalService hospitalService,
                               IClinicService clinicService,
                               IWorkContext workContext,
                               IPersonService userService,
                               IClinicPersonsService clinicUsersService,
                               BanobatDbContext dbContext) : base(workContext)
 {
     _appointmentService = appointmentService;
     _commonUtils        = commonUtils;
     _hospitalService    = hospitalService;
     _clinicService      = clinicService;
     _workContext        = workContext;
     _userService        = userService;
     _clinicUsersService = clinicUsersService;
     logger     = LogManager.GetCurrentClassLogger();
     _dbContext = dbContext;
 }
예제 #14
0
        public HomeController(BanobatDbContext dbContext,
                              IHospitalService hospitalService,
                              IClinicService clinicService,
                              IShiftCenterService polyclinicService,
                              IAppointmentService appointmentService,
                              IStatisticsService statisticsService,
                              IIPAsManager iPAsManager,
                              IPersonService userService,
                              IContactUsService contactUsService)
        {
            _dbContext          = dbContext;
            _hospitalService    = hospitalService;
            _clinicService      = clinicService;
            _polyclinicService  = polyclinicService;
            _appointmentService = appointmentService;
            _statisticsService  = statisticsService;
            _iPAsManager        = iPAsManager;
            _userService        = userService;
            _contactUsService   = contactUsService;

            logger = LogManager.GetCurrentClassLogger();
        }
 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;
 }
예제 #16
0
 public ClinicController(IClinicService clinicService, ILogger <ClinicController> logger,
                         UserManager <AppUser> userManager, IUserRepository userRepository) : base(userManager, userRepository)
 {
     _clinicService = clinicService;
 }
예제 #17
0
 public Admin(IClinicService clinicServiceClient)
 {
     _clinicServiceClient = clinicServiceClient;
 }
예제 #18
0
 public ClinicController(IHospitalService clinicService, IUserService userService, IClinicService clinicService2)
 {
     _clinicService  = clinicService;
     _userService    = userService;
     _clinicService2 = clinicService2;
 }
예제 #19
0
 public CommonAction(IClinicService clinicServiceClient)
 {
     _clinicServiceClient = clinicServiceClient;
 }
 public ClinicController(IClinicService clinicService, ILogger <ClinicController> logger) : base(logger)
 {
     this.clinicService = clinicService;
     this.logger        = logger;
 }
예제 #21
0
 public ClinicController(IPatientService accountService, IClinicService clinicService)
 {
     this.accountService = accountService;
     this.clinicService  = clinicService;
 }
 public ClinicController(IClinicService ause)
 {
     this.ause = ause;
 }
예제 #23
0
 public EquipmentService(ETSDbContext context, IClinicService clinic) : base(context)
 {
     _clinic = clinic;
 }
예제 #24
0
 public ClinicController(IClinicService clinicService)
 {
     _clinicService = clinicService;
 }
 public SecurityController(IClinicService clinicService, BanobatDbContext dbContext) : base(clinicService)
 {
     _clinicService = clinicService;
     logger         = LogManager.GetCurrentClassLogger();
     _dbContext     = dbContext;
 }
예제 #26
0
 public AppointmentsController(IClinicService clinicService)
 {
     this.clinicService = clinicService;
 }
예제 #27
0
 public ClinicController(IClinicService clinicService)
 {
     _clinicService = clinicService ?? throw new ArgumentNullException(nameof(clinicService));
 }
 public ListDoctorsTableComponent(IClinicService clinicService, IShiftCenterService polyclinicService, IWorkContext workContext)
 {
     _clinicService     = clinicService;
     _polyClinicService = polyclinicService;
     _workContext       = workContext;
 }
예제 #29
0
 public ClinicController(IClinicService clinicService)
 {
     _clinicService = clinicService;
 }
예제 #30
0
 public WeatherForecastController(ILogger <WeatherForecastController> logger, IClinicService clinicService)
 {
     _logger        = logger;
     _clinicService = clinicService;
 }
예제 #31
0
 public ClinicController(IClinicService clinicService, IMapper mapper)
 {
     _clinicService = clinicService;
     _mapper        = mapper;
 }
 public ClinicVocationsTableComponent(IClinicService clinicService)
 {
     _clinicService = clinicService;
 }