public PaysController(Web.Services.ISubscribesService subscribesService,
                              IHubContext <NotificationsHub> notificationHubContext, IHubConnectionManager userConnectionManager,
                              INoticesService noticesService, IMailService mailService,
                              IWebHostEnvironment environment, IOptions <AppSettings> appSettings, IAppLogger appLogger)
        {
            _subscribesService = subscribesService;

            _notificationHubContext = notificationHubContext;
            _userConnectionManager  = userConnectionManager;

            _noticesService = noticesService;
            _mailService    = mailService;

            _environment = environment;
            _appSettings = appSettings.Value;
            _logger      = appLogger;
        }
Example #2
0
        public ATestsController(IWebHostEnvironment environment, IOptions <AppSettings> appSettings, IAppLogger appLogger,
                                IHubContext <NotificationsHub> notificationHubContext, IHubConnectionManager userConnectionManager,
                                IDataService dataService,
                                ICloudStorageService cloudStorageService, IOptions <AdminSettings> adminSettings,
                                INoticesService noticesService, IMailService mailService,
                                Web.Services.ISubscribesService subscribesService, ITestsService testsService)
        {
            _environment = environment;
            _appSettings = appSettings.Value;
            _logger      = appLogger;

            _dataService         = dataService;
            _cloudStorageService = cloudStorageService;

            _notificationHubContext = notificationHubContext;
            _userConnectionManager  = userConnectionManager;

            _noticesService = noticesService;
            _mailService    = mailService;

            _subscribesService = subscribesService;
            _adminSettings     = adminSettings.Value;
            _testsService      = testsService;
        }
Example #3
0
 public NotificationsController(INoticesService noticesService, IMapper mapper)
 {
     _noticesService = noticesService;
     _mapper         = mapper;
 }
 public ClinicNoticesPageController(INoticesService noticesService)
 {
     _noticesService = noticesService;
 }
Example #5
0
 public SWNTController(INoticesService _INoticeService)
 {
     this._INoticeService = _INoticeService;
 }
 public HospitalUserSendDistributiveMessagesPageController(INoticesService noticesService)
 {
     _noticesService = noticesService;
 }
Example #7
0
 public NoticesController(INoticesService noticesService)
 {
     _noticesService = noticesService;
 }
Example #8
0
		public NoticesController(INoticesService noticesService, IUsersService usersService, IMapper mapper)
		{
			_noticesService = noticesService;
			_usersService = usersService;
			_mapper = mapper;
		}
 public HospitalNoticesPageController(INoticesService noticesService)
 {
     _noticesService = noticesService;
 }