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