Ejemplo n.º 1
0
 public AuthHelper(IUserService userService, ISmsService smsService, IUserTokenService userTokenService, IRoleService roleService, IOnlineUserService onlineUserService)
 {
     this._userService      = userService;
     this._smsService       = smsService;
     this._userTokenService = userTokenService;
     this._roleService      = roleService;
     _onlineUserService     = onlineUserService;
 }
 public AccountController(IConfiguration config, SmsHelper smsHelper, AuthHelper authHelper, IOnlineUserService onlineUserService, IUserService userService, IUserTokenService tokenService) : base(onlineUserService)
 {
     _smsHelper         = smsHelper;
     _authHelper        = authHelper;
     _onlineUserService = onlineUserService;
     _userService       = userService;
     _tokenService      = tokenService;
     _config            = config;
 }
Ejemplo n.º 3
0
 public MessageController(IUserService userService,
                          IOnlineUserService onlineUserService,
                          IConversationService conversationService,
                          IHubContext <IConversationHubClient> conversationHub)
 {
     _onlineUserService   = onlineUserService;
     _conversationService = conversationService;
     _userService         = userService;
     _conversationHub     = conversationHub;
 }
        public LoginHandler(TcpSession tcpSession,
                            IUserService userService, IOnlineUserService onlineUserService,
                            IStandardAccountService standardAccountService) : base(tcpSession)
        {
            _userService            = userService;
            _onlineUserService      = onlineUserService;
            _standardAccountService = standardAccountService;

            tcpSession.SessionClosed += OnTcpSession_SessionClosed;
        }
Ejemplo n.º 5
0
 public ProfileController(IUserService userService,
                          IOnlineUserService onlineUserService,
                          IFileStorageService fileStorageService,
                          IHubContext <IProfileHubClient> hubContext)
 {
     _userService        = userService;
     _onlineUserService  = onlineUserService;
     _fileStorageService = fileStorageService;
     _hubContext         = hubContext;
 }
Ejemplo n.º 6
0
 public TesterProfileController(IOnlineUserService onlineUserService,
                                ITesterProfileService profileService, IUserEducationService educationService, IUserJobService jobService, IUserLanguageService languageService, IUserFavoriteService userFavoriteService, IFavoriteTagService favoriteTagService, IUserSocialsService socialsService) : base(onlineUserService)
 {
     _profileService      = profileService;
     _educationService    = educationService;
     _jobService          = jobService;
     _languageService     = languageService;
     _userFavoriteService = userFavoriteService;
     _favoriteTagService  = favoriteTagService;
     _socialsService      = socialsService;
 }
Ejemplo n.º 7
0
        public LogoutModel(IIdentityServerInteractionService interaction,
                           IEventService events,
                           SignInManager <ApplicationUser> signInManager,
                           IOnlineUserService onlineUserService,
                           ILogger <LogoutModel> logger)
        {
            _interaction = interaction;
            _events      = events;

            _signInManager     = signInManager;
            _onlineUserService = onlineUserService;
            _logger            = logger;
        }
Ejemplo n.º 8
0
 public ExternalLoginModel(
     SignInManager <ApplicationUser> signInManager,
     UserManager <ApplicationUser> userManager,
     IOnlineUserService onlineUserService,
     ILogger <ExternalLoginModel> logger,
     IEmailSender emailSender)
 {
     _signInManager     = signInManager;
     _userManager       = userManager;
     _onlineUserService = onlineUserService;
     _logger            = logger;
     _emailSender       = emailSender;
 }
Ejemplo n.º 9
0
        public LoginModel(
            IIdentityServerInteractionService interaction,
            IClientStore clientStore,
            IAuthenticationSchemeProvider schemeProvider,
            IEventService events,
            SignInManager <ApplicationUser> signInManager,
            ILogger <LoginModel> logger,
            UserManager <ApplicationUser> userManager,
            IOnlineUserService onlineUserService,
            LoginManager loginManager,
            IEmailSender emailSender)
        {
            _interaction    = interaction;
            _clientStore    = clientStore;
            _schemeProvider = schemeProvider;
            _events         = events;

            _userManager       = userManager;
            _signInManager     = signInManager;
            _onlineUserService = onlineUserService;
            _loginManager      = loginManager;
            _emailSender       = emailSender;
            _logger            = logger;
        }
Ejemplo n.º 10
0
 public UserListController(IUserService userService, IOnlineUserService onlineUserService)
 {
     _userService       = userService;
     _onlineUserService = onlineUserService;
 }
Ejemplo n.º 11
0
 public UserHub(IOnlineUserService onlineUserService, TenantService tenantService)
 {
     _onlineUserService = onlineUserService;
     _tenantService     = tenantService;
 }
Ejemplo n.º 12
0
 public OnlineUserUpdateService(IOnlineUserService onlineUserSerive, ILogger <OnlineUserUpdateService> logger)
 {
     _onlineUserSerive = onlineUserSerive;
     _logger           = logger;
 }
Ejemplo n.º 13
0
 public UserController(IOnlineUserService onlineUserService,
                       IAuthorizationService authorizationService)
 {
     this._onlineUserService    = onlineUserService;
     this._authorizationService = authorizationService;
 }
Ejemplo n.º 14
0
 public OnlineUserHub(IOnlineUserService onlineUserService, IFapApplicationContext applicationContext)
 {
     _onlineUserService  = onlineUserService;
     _applicationContext = applicationContext;
 }
Ejemplo n.º 15
0
 public GeneralDataController(DbContextModel db, IOnlineUserService onlineUserService) : base(onlineUserService)
 {
     _db = db;
 }
 public SchoolController(ISchoolCourseService courseService, ISchoolTopicService topicService, IOnlineUserService onlineUserService, ISchoolUserUnitReadService unitReadService, ISchoolUnitService unitService) : base(onlineUserService)
 {
     _courseService   = courseService;
     _topicService    = topicService;
     _unitReadService = unitReadService;
     _unitService     = unitService;
 }
Ejemplo n.º 17
0
 public BaseController(IOnlineUserService onlineUserService)
 {
     _onlineUserService = onlineUserService;
 }
Ejemplo n.º 18
0
 public HomeController(IServiceProvider serviceProvider, ILoginService loginService, IOnlineUserService onlineUserService) : base(serviceProvider)
 {
     _logger            = _loggerFactory.CreateLogger <HomeController>();
     _loginService      = loginService;
     _onlineUserService = onlineUserService;
 }
Ejemplo n.º 19
0
 public QuizController(IOnlineUserService onlineUserService, IFormService formService, IQueueService queueService)
     : base(onlineUserService)
 {
     _formService  = formService;
     _queueService = queueService;
 }
Ejemplo n.º 20
0
 public UserListHub(IOnlineUserService onlineUserService)
 {
     _onlineUserService = onlineUserService;
 }
 public TesterCityController(IOnlineUserService onlineUserService) : base(onlineUserService)
 {
 }