Exemplo n.º 1
0
 public DbSet <User> GetAllAsync()
 {
     return(_context.Set <User>());
 }
Exemplo n.º 2
0
 public BillionCompanyRepository(BillionCompanyDbContext context)
 {
     _context = context;
     _dbSet   = context.Set <TEntity>();
 }