예제 #1
0
 public UnitOfWork(TestTaskDbContext db)
 {
     _dbContext = db;
 }
예제 #2
0
 public UnitOfWork(TestTaskDbContext context)
 {
     _context = context;
 }
 public CategoryFieldTypeRepository(TestTaskDbContext context) : base(context)
 {
 }
예제 #4
0
 public CategoryRepository(TestTaskDbContext context) : base(context)
 {
 }
예제 #5
0
 public CategoryRepository(TestTaskDbContext context)
 {
     _context = context;
 }
예제 #6
0
 public ItemRepository(TestTaskDbContext context) : base(context)
 {
 }
예제 #7
0
 public ProductRepository(TestTaskDbContext context)
 {
     _context = context;
 }
예제 #8
0
 public Repository(TestTaskDbContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }