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