Exemplo n.º 1
0
 public UnitOfWork(AppIdentityDbContext _context)
 {
     _identityContext = _context;
 }
Exemplo n.º 2
0
 public GenericRepository(AppIdentityDbContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }