Пример #1
0
        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;
        }
Пример #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;
        }
 public SubscribesController(Web.Services.ISubscribesService subscribesService)
 {
     _subscribesService = subscribesService;
 }
Пример #4
0
 public PlansController(Web.Services.ISubscribesService subscribesService, IMapper mapper)
 {
     _subscribesService = subscribesService;
     _mapper            = mapper;
 }