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