Esempio n. 1
0
 public EfUnitOfWork(EduraContext _dbContext)
 {
     dbContext = _dbContext ?? throw new ArgumentNullException("DbContext can not be null!");
 }
Esempio n. 2
0
 public EfCategoryRepository(EduraContext context) : base(context)
 {
 }
Esempio n. 3
0
 public EfOrderRepository(EduraContext context) : base(context)
 {
 }
Esempio n. 4
0
 public EfUnitOfWork(EduraContext context)
 {
     this.context = context;
 }
Esempio n. 5
0
 public EfOrderRepository(EduraContext _context)
 {
     context = _context;
 }
Esempio n. 6
0
 public EfProductRepository(EduraContext context) : base(context)
 {
 }