Пример #1
0
 public Home(IGamesManager gameManageService, IAppAuthenticationService authenticationService, ITagCrudService tagCrudService, ISessionTagCrudService sessionTagCrudService,
             IGamesCrudService gamesCrudService, IMapper mapper)
 {
     this.gameManageService     = gameManageService;
     this.authenticationService = authenticationService;
     this.tagCrudService        = tagCrudService;
     this.sessionTagCrudService = sessionTagCrudService;
     this.gamesCrudService      = gamesCrudService;
     this.mapper = mapper;
 }
Пример #2
0
 public AccountController(
     IConfiguration configuration,
     SignInManager <AppUserIdentity> signInManager,
     IAppAuthenticationService appAuthenticationService,
     UserManager <AppUserIdentity> userManager,
     AppDbContext db)
 {
     _configuration            = configuration;
     _signInManager            = signInManager;
     _appAuthenticationService = appAuthenticationService;
     _userManager = userManager;
     _db          = db;
 }
 public AuthenticationController(IAppAuthenticationService appAuthenticationService, UserSettings userSettings, SecuritySettings securitySettings, IUserRegistrationService userRegistrationService, IRoleService roleService, IUserService userService, ICryptographyService cryptographyService, IUserCodeService userCodeService, IPreviousPasswordService previousPasswordService, IConsentService consentService, IGdprService gdprService, IGdprModelFactory gdprModelFactory, IInviteRequestService inviteRequestService, AffiliateSettings affiliateSettings)
 {
     _appAuthenticationService = appAuthenticationService;
     _userSettings             = userSettings;
     _securitySettings         = securitySettings;
     _userRegistrationService  = userRegistrationService;
     _roleService             = roleService;
     _userService             = userService;
     _cryptographyService     = cryptographyService;
     _userCodeService         = userCodeService;
     _previousPasswordService = previousPasswordService;
     _consentService          = consentService;
     _gdprService             = gdprService;
     _gdprModelFactory        = gdprModelFactory;
     _inviteRequestService    = inviteRequestService;
     _affiliateSettings       = affiliateSettings;
 }
 public AppAuthenticationController(IAppAuthenticationService service)
 {
     appAuthService = service;
 }
Пример #5
0
 public AppAuthenticationFacade(IAppAuthenticationService appSecurityService)
 {
     _appAuthenticationService = appSecurityService;
 }
Пример #6
0
 public Account(IAppAuthenticationService authenticationService)
 {
     this.authenticationService = authenticationService;
 }
Пример #7
0
 public AuthenticationController(IAppAuthenticationService appAuthenticationService, IOptions <AuthenticationConfig> authConfig)
 {
     _authConfig = authConfig.Value;
     _appAuthenticationService = appAuthenticationService;
 }
 public UserAccountController(AppDbContext dbContext, ILogger <UserAccountController> logger, IAppAuthenticationService appAuthenticationService)
     : base(dbContext, logger)
 {
     this.appAuthenticationService = appAuthenticationService;
 }
 public AppAuthenticationFacade(IAppAuthenticationService appSecurityService)
 {
     _appAuthenticationService = appSecurityService;
 }