public EfProductRepository(ProductsDbContext context) : base(context)
 {
 }
Esempio n. 2
0
 public EfGenericRepository(ProductsDbContext ctx)
 {
     context = ctx;
 }
Esempio n. 3
0
 public EfUnitOfWork(ProductsDbContext _productsDbContext)
 {
     productsDbContext = _productsDbContext ?? throw new ArgumentNullException("dbcontext can not be null");
 }