public UnitOfWork(IdentitySampleDbContext context)
 {
     _context = context;
 }
 public Repository(IdentitySampleDbContext context)
 {
     Db    = context;
     DbSet = Db.Set <T>();
 }
Exemple #3
0
 public UserRepository(IdentitySampleDbContext context)
     : base(context)
 {
 }