public HomeController(IDragonUserStore<AppMember> userStore, IFederationService federationService, ApplicationSignInManager signInManager, ApplicationUserManager userManager) { _userStore = userStore; _federationService = federationService; _signInManager = signInManager; _userManager = userManager; }
public CustomSecurityTokenService(string loginProviderName, SecurityTokenServiceConfiguration securityTokenServiceConfiguration, EncryptingCredentials encryptingCredentials, IDragonUserStore <T> userStore) : base(securityTokenServiceConfiguration) { _loginProviderName = loginProviderName; _encryptingCredentials = encryptingCredentials; _userStore = userStore; }
public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IDragonUserStore<AppMember> userStore, IFederationService federationService, IAppService appService) { _userStore = userStore; _federationService = federationService; _appService = appService; UserManager = userManager; SignInManager = signInManager; }
public HomeController(IDragonUserStore <AppMember> userStore, IFederationService federationService, ApplicationSignInManager signInManager, ApplicationUserManager userManager, IRepository <UserActivity> userActivityRepository, IProviderLimiterService providerLimiterService) { _userStore = userStore; _federationService = federationService; _signInManager = signInManager; _userManager = userManager; _userActivityRepository = userActivityRepository; _providerLimiterService = providerLimiterService; }
public ProfileApiController(IDragonUserStore<AppMember> userStore, ApplicationUserManager userManager) { _userStore = userStore; _userManager = userManager; }
public LegacyWavUserMigration(IDragonUserStore <T> userStore) { _userStore = userStore; _serviceId = ConfigurationManager.AppSettings["ServiceId"]; }
public HomeController(IDragonUserStore <AppMember> userStore) { _userStore = userStore; }
public OpenIdMigrationWebRequestHandler(IDragonUserStore<AppMember> userStore) { _userStore = userStore; }
public AccountApiController(IDragonUserStore <AppMember> userStore, ApplicationUserManager userManager, IRepository <UserActivity> userActivityRepository) { _userStore = userStore; _userManager = userManager; _userActivityRepository = userActivityRepository; }
public HomeController(IDragonUserStore<AppMember> userStore) { _userStore = userStore; }
public UserService(IDragonUserStore<AppMember> userStore) { _userStore = userStore; }
public CustomSecurityTokenService(SecurityTokenServiceConfiguration securityTokenServiceConfiguration, EncryptingCredentials encryptingCredentials, IDragonUserStore<AppMember> userStore) : base(securityTokenServiceConfiguration) { _encryptingCredentials = encryptingCredentials; _userStore = userStore; }
public ProfileApiController(IDragonUserStore <AppMember> userStore, ApplicationUserManager userManager) { _userStore = userStore; _userManager = userManager; }