Esempio n. 1
0
 public ImageManagerRepository(ComandaDbContext context)
     : base(context)
 {
 }
Esempio n. 2
0
 public ProductRepository(ComandaDbContext context)
     : base(context)
 {
 }
 public UserRepository(ComandaDbContext context)
     : base(context)
 {
 }
 public Repository(ComandaDbContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
Esempio n. 5
0
 public ComandaController(ComandaDbContext context)
 {
     _context = context;
 }
Esempio n. 6
0
 public ComandaRepository(ComandaDbContext dDbContext)
 {
     dcontext = dDbContext;
 }
 public OrderController(ComandaDbContext context)
 {
     _context = context;
 }
 public UnitOfWork(ComandaDbContext context)
 {
     _context = context;
 }
 public ProductController(ComandaDbContext context)
 {
     _context = context;
 }