コード例 #1
0
 public ImageManagerRepository(ComandaDbContext context)
     : base(context)
 {
 }
コード例 #2
0
 public ProductRepository(ComandaDbContext context)
     : base(context)
 {
 }
コード例 #3
0
 public UserRepository(ComandaDbContext context)
     : base(context)
 {
 }
コード例 #4
0
 public Repository(ComandaDbContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
コード例 #5
0
 public ComandaController(ComandaDbContext context)
 {
     _context = context;
 }
コード例 #6
0
 public ComandaRepository(ComandaDbContext dDbContext)
 {
     dcontext = dDbContext;
 }
コード例 #7
0
 public OrderController(ComandaDbContext context)
 {
     _context = context;
 }
コード例 #8
0
 public UnitOfWork(ComandaDbContext context)
 {
     _context = context;
 }
コード例 #9
0
 public ProductController(ComandaDbContext context)
 {
     _context = context;
 }