Beispiel #1
0
 public EfParentCategoryRepository(EasyShopContext context) : base(context)
 {
     categoryRepository = new EfCategoryRepository(context);
 }
Beispiel #2
0
 public EfCategoryRepository(EasyShopContext context) : base(context)
 {
 }
Beispiel #3
0
 public EfOrderRepository(EasyShopContext context) : base(context)
 {
 }
Beispiel #4
0
 public EfUnitOfWork(EasyShopContext dbContext)
 => this.dbContext = dbContext ?? throw new ArgumentNullException("DbContext can not be null");
 public EfProductRepository(EasyShopContext context) : base(context)
 {
 }
 public EfBrandRepository(EasyShopContext context) : base(context)
 {
 }