Пример #1
0
        public TurnsController(ITurnsService turnsService,
                               IDoctorServiceManager doctorServiceManager,
                               IAppointmentService appointmentService,
                               IServiceSupplyService serviceSupplyService,
                               IServicesService servicesService,
                               IBlockedMobileService blockedMobileService,
                               IIPAsManager iPAsManager,
                               IPersonService userService,
                               IAppointmentsManager appointmentsManager,
                               INotificationService notificationService,
                               IOfferRepository offerRepository)
        {
            _turnsService         = turnsService;
            _doctorServiceManager = doctorServiceManager;
            _userService          = userService;
            _appointmentsManager  = appointmentsManager;
            _notificationService  = notificationService;
            _servicesService      = servicesService;
            _blockedMobileService = blockedMobileService;
            _iPAsManager          = iPAsManager;
            _appointmentService   = appointmentService;
            _serviceSupplyService = serviceSupplyService;
            _offerRepository      = offerRepository;

            logger = LogManager.GetCurrentClassLogger();
        }
Пример #2
0
 public PrescriptionController(IWorkContext workContext, ISonarNeedsProvider sonarNeedsProvider, IPrescriptionRepository prescriptionRepository, IServiceSupplyService serviceSupplyService, BanobatDbContext dbContext) : base(workContext)
 {
     _sonarNeedsProvider     = sonarNeedsProvider;
     _prescriptionRepository = prescriptionRepository;
     _serviceSupplyService   = serviceSupplyService;
     _dbContext = dbContext;
 }
Пример #3
0
 public UserController(IIdentityService identityService, IPersonService personService, IShiftCenterService shiftCenterService, IPharmacyRepository pharmacyRepository, IServiceSupplyService serviceSupplyService, IMapper mapper, ILogger <UserController> logger)
 {
     _identityService      = identityService;
     _personService        = personService;
     _shiftCenterService   = shiftCenterService;
     _pharmacyRepository   = pharmacyRepository;
     _serviceSupplyService = serviceSupplyService;
     _mapper = mapper;
     _logger = logger;
 }
 public AppointmentsController(
     IAppointmentService appointmentService,
     IServiceSupplyService serviceSupplyService,
     IShiftCenterMessageService polyclinicMessageService,
     IPlivoService plivoService,
     IWorkContext workContext) : base(workContext)
 {
     _appointmentService       = appointmentService;
     _serviceSupplyService     = serviceSupplyService;
     _polyclinicMessageService = polyclinicMessageService;
     _plivoService             = plivoService;
 }
 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;
 }
Пример #6
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 OfferController(IWorkContext workContext,
                        IOfferRepository offerRepository,
                        IServicesService servicesService,
                        IServiceSupplyService serviceSupplyService,
                        BanobatDbContext banobatDbContext,
                        IUploadService uploadService, IScheduleManager scheduleManager) : base(workContext)
 {
     _offerRepository      = offerRepository;
     _healthServiceService = servicesService;
     _serviceSupplyService = serviceSupplyService;
     _dbContext            = banobatDbContext;
     _uploadService        = uploadService;
     _scheduleManager      = scheduleManager;
 }
 public BookingController(IServiceSupplyService serviceSupplyService,
                          IWorkContext workContext,
                          IServicesService servicesService,
                          IPatientService patientService,
                          IAppointmentsManager appointmentsManager,
                          IIPAsManager iPAsManager,
                          IDoctorServiceManager doctorServiceManager) : base(workContext)
 {
     _serviceSupplyService = serviceSupplyService;
     _healthServiceService = servicesService;
     _patientService       = patientService;
     _doctorServiceManager = doctorServiceManager;
     _appointmentsManager  = appointmentsManager;
     _iPAsManager          = iPAsManager;
 }
 public DoctorsService(BanobatDbContext dbContext,
                       IServiceSupplyService serviceSupplyService,
                       IDoctorServiceManager doctorServiceManager,
                       IServicesService servicesService,
                       IRatingService ratingService,
                       IAppointmentService appointmentService,
                       IPersonService userService)
 {
     _dbContext            = dbContext;
     _serviceSupplyService = serviceSupplyService;
     _doctorServiceManager = doctorServiceManager;
     _servicesService      = servicesService;
     _ratingService        = ratingService;
     _appointmentService   = appointmentService;
     _userService          = userService;
 }
 public PatientController(IWorkContext workContext,
                          IPersonService personService,
                          IPatientService patientService,
                          IServiceSupplyService serviceSupplyService,
                          IAppointmentService appointmentService,
                          IUploadService uploadService,
                          IMapper mapper,
                          BanobatDbContext dbContext) : base(workContext)
 {
     _personService        = personService;
     _patientService       = patientService;
     _serviceSupplyService = serviceSupplyService;
     _appointmentService   = appointmentService;
     _uploadService        = uploadService;
     _mapper    = mapper;
     _dbContext = dbContext;
 }
Пример #11
0
 public InvoiceController(IWorkContext workContext,
                          IShiftCenterService shiftCenterService,
                          IMapper mapper,
                          IInvoiceRepository invoiceRepository,
                          IAppointmentService appointmentService,
                          IPatientService patientService,
                          INotificationService notificationService,
                          IServiceSupplyService serviceSupplyService,
                          BanobatDbContext dbContext) : base(workContext)
 {
     _shiftCenterService   = shiftCenterService;
     _mapper               = mapper;
     _invoiceRepository    = invoiceRepository;
     _appointmentService   = appointmentService;
     _patientService       = patientService;
     _notificationService  = notificationService;
     _serviceSupplyService = serviceSupplyService;
     _dbContext            = dbContext;
 }
 public AppointmentController(IAppointmentService appointmentService,
                              IServiceSupplyService serviceSupplyService)
 {
     _appointmentService   = appointmentService;
     _serviceSupplyService = serviceSupplyService;
 }
Пример #13
0
 public DoctorController(IServiceSupplyService supplyService)
 {
     _supplyService = supplyService;
 }
 public LocationService(IServiceSupplyService serviceSupplyService, IDoctorServiceManager doctorServiceManager)
 {
     _serviceSupplyService = serviceSupplyService;
     _doctorServiceManager = doctorServiceManager;
 }
Пример #15
0
 public DoctorServiceManager(IServiceSupplyService serviceSupplyService, IServiceSupplyManager serviceSupplyManager, IIPAsManager iPAsManager)
 {
     _serviceSupplyService = serviceSupplyService;
     _serviceSupplyManager = serviceSupplyManager;
     _iPAsManager          = iPAsManager;
 }
Пример #16
0
 public TurnsService(IPersonService userService, IAppointmentService appointmentService, IServiceSupplyService serviceSupplyService)
 {
     _userService          = userService;
     _appointmentService   = appointmentService;
     _serviceSupplyService = serviceSupplyService;
 }