Esempio n. 1
0
 public ResourceStore(
     ClientDbContext dbContext,
     IDistributedCache cache = null
     ) : base(dbContext, cache)
 {
     DbContext = dbContext;
 }
Esempio n. 2
0
 public ManagerStore(
     ClientDbContext dbContext,
     IDistributedCache cache = null
     ) : base(dbContext, cache)
 {
 }
Esempio n. 3
0
 public SecretStore(
     ClientDbContext dbContext,
     IDistributedCache cache = null
     ) : base(dbContext, cache)
 {
 }
Esempio n. 4
0
 public GrantStore(
     ClientDbContext dbContext
     )
 {
     _db = dbContext;
 }