Exemplo n.º 1
0
 public BaseRepository(ApplicationDbContext context /*, IMapper mapper*/)
 {
     Context = context;
     DbSet   = Context.Set <TEntity>();
 }
Exemplo n.º 2
0
 public async Task <List <Product> > GetAllAsync()
 {
     return(await db.Set <Product>().ToListAsync());
 }