コード例 #1
0
ファイル: HomeController.cs プロジェクト: aduggleby/dragon
 public HomeController(IDragonUserStore<AppMember> userStore, IFederationService federationService, ApplicationSignInManager signInManager, ApplicationUserManager userManager)
 {
     _userStore = userStore;
     _federationService = federationService;
     _signInManager = signInManager;
     _userManager = userManager;
 }
コード例 #2
0
 public CustomSecurityTokenService(string loginProviderName, SecurityTokenServiceConfiguration securityTokenServiceConfiguration, EncryptingCredentials encryptingCredentials, IDragonUserStore <T> userStore)
     : base(securityTokenServiceConfiguration)
 {
     _loginProviderName     = loginProviderName;
     _encryptingCredentials = encryptingCredentials;
     _userStore             = userStore;
 }
コード例 #3
0
ファイル: AccountController.cs プロジェクト: aduggleby/dragon
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IDragonUserStore<AppMember> userStore, IFederationService federationService, IAppService appService)
 {
     _userStore = userStore;
     _federationService = federationService;
     _appService = appService;
     UserManager = userManager;
     SignInManager = signInManager;
 }
コード例 #4
0
ファイル: HomeController.cs プロジェクト: jbinder/dragon
 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;
 }
コード例 #5
0
 public ProfileApiController(IDragonUserStore<AppMember> userStore, ApplicationUserManager userManager)
 {
     _userStore = userStore;
     _userManager = userManager;
 }
コード例 #6
0
 public LegacyWavUserMigration(IDragonUserStore <T> userStore)
 {
     _userStore = userStore;
     _serviceId = ConfigurationManager.AppSettings["ServiceId"];
 }
コード例 #7
0
 public HomeController(IDragonUserStore <AppMember> userStore)
 {
     _userStore = userStore;
 }
コード例 #8
0
 public OpenIdMigrationWebRequestHandler(IDragonUserStore<AppMember> userStore)
 {
     _userStore = userStore;
 }
コード例 #9
0
 public AccountApiController(IDragonUserStore <AppMember> userStore, ApplicationUserManager userManager, IRepository <UserActivity> userActivityRepository)
 {
     _userStore              = userStore;
     _userManager            = userManager;
     _userActivityRepository = userActivityRepository;
 }
コード例 #10
0
ファイル: HomeController.cs プロジェクト: aduggleby/dragon
 public HomeController(IDragonUserStore<AppMember> userStore)
 {
     _userStore = userStore;
 }
コード例 #11
0
ファイル: UserService.cs プロジェクト: aduggleby/dragon
 public UserService(IDragonUserStore<AppMember> userStore)
 {
     _userStore = userStore;
 }
コード例 #12
0
 public CustomSecurityTokenService(SecurityTokenServiceConfiguration securityTokenServiceConfiguration, EncryptingCredentials encryptingCredentials, IDragonUserStore<AppMember> userStore)
     : base(securityTokenServiceConfiguration)
 {
     _encryptingCredentials = encryptingCredentials;
     _userStore = userStore;
 }
コード例 #13
0
 public ProfileApiController(IDragonUserStore <AppMember> userStore, ApplicationUserManager userManager)
 {
     _userStore   = userStore;
     _userManager = userManager;
 }