Beispiel #1
0
 public UserRepository(CableIdentityDbContext dbContext) : base(dbContext)
 {
 }
Beispiel #2
0
 public Repository(CableIdentityDbContext context)
 {
     DbContext = context;
     DbSet     = DbContext.Set <TEntity>();
 }
Beispiel #3
0
 public GenericRepository(CableIdentityDbContext dbContext)
 {
     _dbContext = dbContext;
     _dbSet     = dbContext.Set <T>();
 }