public PersistedGrantDbContext CreateDbContext(string[] args)
 {
     return(new PersistedGrantDbContext(
                CTX.ToOpts <PersistedGrantDbContext>(CTX.GetPwd(), "grants"),
                new OperationalStoreOptions()
                ));
 }
 public ConfigurationDbContext CreateDbContext(string[] args)
 {
     return(new ConfigurationDbContext(
                CTX.ToOpts <ConfigurationDbContext>(CTX.GetPwd(), "clients"),
                new ConfigurationStoreOptions()));
 }
 public UserStoreDbContext CreateDbContext(string[] args)
 {
     return(new UserStoreDbContext(CTX.ToOpts <UserStoreDbContext>(CTX.GetPwd(), "users")));
 }