Exemplo n.º 1
0
        GetPersistedGrantService(IPersistedGrantAspNetIdentityRepository repository, IPersistedGrantAspNetIdentityServiceResources persistedGrantServiceResources)
        {
            var persistedGrantService = new PersistedGrantAspNetIdentityService(repository,
                                                                                persistedGrantServiceResources);

            return(persistedGrantService);
        }
        GetPersistedGrantService(IPersistedGrantAspNetIdentityRepository repository, IPersistedGrantAspNetIdentityServiceResources persistedGrantServiceResources, IAuditEventLogger auditEventLogger)
        {
            var persistedGrantService = new PersistedGrantAspNetIdentityService(repository,
                                                                                persistedGrantServiceResources, auditEventLogger);

            return(persistedGrantService);
        }
 public PersistedGrantAspNetIdentityService(IPersistedGrantAspNetIdentityRepository persistedGrantAspNetIdentityRepository,
                                            IPersistedGrantAspNetIdentityServiceResources persistedGrantAspNetIdentityServiceResources
                                            , IAuditEventLogger auditEventLogger)
 {
     PersistedGrantAspNetIdentityRepository       = persistedGrantAspNetIdentityRepository;
     PersistedGrantAspNetIdentityServiceResources = persistedGrantAspNetIdentityServiceResources;
     AuditEventLogger = auditEventLogger;
 }
Exemplo n.º 4
0
 public PersistedGrantAspNetIdentityService(IPersistedGrantAspNetIdentityRepository persistedGrantAspNetIdentityRepository,
                                            IPersistedGrantAspNetIdentityServiceResources persistedGrantAspNetIdentityServiceResources)
 {
     PersistedGrantAspNetIdentityRepository       = persistedGrantAspNetIdentityRepository;
     PersistedGrantAspNetIdentityServiceResources = persistedGrantAspNetIdentityServiceResources;
 }
Exemplo n.º 5
0
 public PersistedGrantAspNetIdentityService(IPersistedGrantAspNetIdentityRepository <TDbContext, TUser, TRole, TKey, TUserClaim, TUserRole, TUserLogin, TRoleClaim, TUserToken> persistedGrantAspNetIdentityRepository,
                                            IPersistedGrantAspNetIdentityServiceResources persistedGrantAspNetIdentityServiceResources)
 {
     _persistedGrantAspNetIdentityRepository       = persistedGrantAspNetIdentityRepository;
     _persistedGrantAspNetIdentityServiceResources = persistedGrantAspNetIdentityServiceResources;
 }
        GetPersistedGrantService(IPersistedGrantAspNetIdentityRepository <AdminDbContext, UserIdentity, UserIdentityRole, int, UserIdentityUserClaim, UserIdentityUserRole, UserIdentityUserLogin, UserIdentityRoleClaim, UserIdentityUserToken> repository, IPersistedGrantAspNetIdentityServiceResources persistedGrantServiceResources)
        {
            var persistedGrantService = new PersistedGrantAspNetIdentityService <AdminDbContext, UserIdentity, UserIdentityRole, int, UserIdentityUserClaim,
                                                                                 UserIdentityUserRole, UserIdentityUserLogin, UserIdentityRoleClaim, UserIdentityUserToken>(repository,
                                                                                                                                                                            persistedGrantServiceResources);

            return(persistedGrantService);
        }