Exemplo n.º 1
0
 public AuthenticationProviderFactory(AuthenticationDatabaseContext <TAccount> database)
 {
     this._database = database;
 }
Exemplo n.º 2
0
 protected AuthenticationProvider(AuthenticationDatabaseContext <TAccount> database)
 {
     Database = database;
 }
Exemplo n.º 3
0
 public KakaoAuthenticationProvider(AuthenticationDatabaseContext <TAccount> databaseContext)
     : base(databaseContext)
 {
 }
 public FacebookAuthenticationProvider(AuthenticationDatabaseContext <TAccount> databaseContext)
     : base(databaseContext)
 {
 }
Exemplo n.º 5
0
 public SelfAuthenticationProvider(AuthenticationDatabaseContext <TAccount> database)
     : base(database)
 {
 }