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