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