Beispiel #1
0
 public EFCategoryRepository(ShopItNowContext context)
     : base(context)
 {
 }
Beispiel #2
0
 public EFUnitOfWork(ShopItNowContext _dbContext)
 {
     dbContext = _dbContext ?? throw new ArgumentNullException("dbContext can not be null.");
 }
Beispiel #3
0
 public EFProductRepository(ShopItNowContext context)
     : base(context)
 {
 }
Beispiel #4
0
 public EFOrderRepository(ShopItNowContext ctx)
 {
     context = ctx;
 }