public RestauranteRepository(ConsumoContext context) : base(context)
 {
 }
Ejemplo n.º 2
0
 public ConsumoRepository(ConsumoContext context) : base(context)
 {
 }
Ejemplo n.º 3
0
 public UnitOfWork(ConsumoContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public Repository(ConsumoContext context)
 {
     _context = context;
     _db      = context.Set <TEntity>();
 }