Example #1
0
 public DownloadController(BanobatDbContext dbContext, IMapper mapper, IPersonService personService, IHostingEnvironment hostingEnvironment, IIdentityService identityService)
 {
     _dbContext          = dbContext;
     _mapper             = mapper;
     _personService      = personService;
     _hostingEnvironment = hostingEnvironment;
     _identityService    = identityService;
 }
 public NotificationController(BanobatDbContext dbContext, INotificationRepository notificationRepository, IMapper mapper, IUploadService uploadService, INotificationService notificationService)
 {
     _dbContext = dbContext;
     _notificationRepository = notificationRepository;
     _mapper              = mapper;
     _uploadService       = uploadService;
     _notificationService = notificationService;
 }
 public RegisterController(IPersonService personService, BanobatDbContext dbContext, ILogger <RegisterController> logger, IOptions <AppSettings> options, INotificationService notificationService)
 {
     _personService       = personService;
     _dbContext           = dbContext;
     _logger              = logger;
     _settings            = options;
     _notificationService = notificationService;
 }
Example #4
0
 public ScheduleManager(BanobatDbContext dbContext, IDoctorServiceManager doctorServiceManager, IServiceSupplyManager serviceSupplyManager, IScheduleService scheduleService, IAppointmentService appointmentService)
 {
     _dbContext            = dbContext;
     _doctorServiceManager = doctorServiceManager;
     _serviceSupplyManager = serviceSupplyManager;
     _scheduleService      = scheduleService;
     _appointmentService   = appointmentService;
 }
Example #5
0
 public AppointmentService(IRepository <Appointment> appointmentRepository,
                           BanobatDbContext dbContext,
                           INotificationService notificationService)
 {
     _appointmentRepository = appointmentRepository;
     _dbContext             = dbContext;
     _notificationService   = notificationService;
 }
 public HomeController(IPersonService userService,
                       IClinicService clinicService,
                       IWorkContext workContext, BanobatDbContext dbContext) : base(clinicService)
 {
     _userService = userService;
     _workContext = workContext;
     logger       = LogManager.GetCurrentClassLogger();
     _dbContext   = dbContext;
 }
 public AppointmentController(IAppointmentService appointmentService,
                              IWorkContext workContext,
                              IPlivoService plivoService,
                              IShiftCenterMessageService polyclinicMessageService,
                              IServiceSupplyService serviceSupplyService,
                              BanobatDbContext dbContext) : base(workContext)
 {
     _appointmentService       = appointmentService;
     _plivoService             = plivoService;
     _polyclinicMessageService = polyclinicMessageService;
     _serviceSupplyService     = serviceSupplyService;
     _dbContext = dbContext;
 }
Example #8
0
 public CmsController(IContentCategoryRepository categoryRepository,
                      IContentArticleRepository articleRepository,
                      BanobatDbContext dbContext,
                      IMapper mapper,
                      IUploadService uploadService,
                      INotificationService notificationService)
 {
     _categoryRepository  = categoryRepository;
     _articleRepository   = articleRepository;
     _dbContext           = dbContext;
     _mapper              = mapper;
     _uploadService       = uploadService;
     _notificationService = notificationService;
 }
 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 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;
 }
 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;
 }
Example #13
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;
 }
Example #14
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;
 }
Example #15
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;
 }
 public WebWorkContext(IHttpContextAccessor httpContextAccessor, ITokenParser tokenParser, BanobatDbContext dbContext)
 {
     _httpContextAccessor = httpContextAccessor;
     _tokenParser         = tokenParser;
     _dbContext           = dbContext;
 }
Example #18
0
 public PrescriptionController(IWorkContext workContext, ISonarNeedsProvider sonarNeedsProvider, IPrescriptionRepository prescriptionRepository, IServiceSupplyService serviceSupplyService, BanobatDbContext dbContext) : base(workContext)
 {
     _sonarNeedsProvider     = sonarNeedsProvider;
     _prescriptionRepository = prescriptionRepository;
     _serviceSupplyService   = serviceSupplyService;
     _dbContext = dbContext;
 }
Example #19
0
 public InsuranceServiceService(IUploadService uploadService, BanobatDbContext dbContext)
 {
     _uploadService = uploadService;
     _dbContext     = dbContext;
 }
Example #20
0
 public LogFilterAttribute(BanobatDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #21
0
 public ProfileService(BanobatDbContext dbContext, IPersonService personService, IUploadService uploadService)
 {
     _personService = personService;
     _uploadService = uploadService;
     _dbContext     = dbContext;
 }
Example #22
0
 public UsersController(IPersonService userService, IClinicService clinicService, BanobatDbContext dbContext) : base(clinicService)
 {
     _userService   = userService;
     _clinicService = clinicService;
     logger         = LogManager.GetCurrentClassLogger();
     _dbContext     = dbContext;
 }
 public SearchService(BanobatDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #24
0
 public DoctorsSpecialitiesTableComponent(BanobatDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public FiltersService(BanobatDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #26
0
 public ReportsController(BanobatDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #27
0
 public PrescriptionController(IWorkContext workContext, IPharmacyPrescriptionRepository prescriptionRepository, BanobatDbContext dbContext) : base(workContext)
 {
     _prescriptionRepository = prescriptionRepository;
     _dbContext = dbContext;
 }
 public ShiftCenterPersonsService(BanobatDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #29
0
 public BrowserVisitsTableComponent(BanobatDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public PersonController(IPersonService personService, IMapper mapper, IUploadService uploadService, BanobatDbContext dbContext)
 {
     _personService = personService;
     _mapper        = mapper;
     _uploadService = uploadService;
     _dbContext     = dbContext;
 }