Example #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();
        }
 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;
 }
Example #3
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 AppointmentsManager(BanobatDbContext dbContext,
                            IPlivoService plivoService,
                            IAppointmentService appointmentService,
                            IDoctorServiceManager doctorServiceManager,
                            IIPAsManager iPAsManager,
                            IWorkContext workContext,
                            INotificationService notificationService,
                            IOptions <AppSettings> settings,
                            IScheduleManager scheduleManager,
                            IKurtenameSmsService smsService)
 {
     _dbContext            = dbContext;
     _plivoService         = plivoService;
     _appointmentService   = appointmentService;
     _doctorServiceManager = doctorServiceManager;
     _iPAsManager          = iPAsManager;
     _workContext          = workContext;
     _notificationService  = notificationService;
     _settings             = settings;
     _scheduleManager      = scheduleManager;
     _smsService           = smsService;
 }
Example #5
0
 public RetriveIPAJob(IIPAsManager iPAsManager)
 {
     _iPAsManager = iPAsManager;
 }
Example #6
0
 public DoctorServiceManager(IServiceSupplyService serviceSupplyService, IServiceSupplyManager serviceSupplyManager, IIPAsManager iPAsManager)
 {
     _serviceSupplyService = serviceSupplyService;
     _serviceSupplyManager = serviceSupplyManager;
     _iPAsManager          = iPAsManager;
 }