public ProductRepository(Angular7NetCoreStoreContext context)
     : base(context)
 {
 }
 public Repository(Angular7NetCoreStoreContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
 public UnitOfWork(Angular7NetCoreStoreContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public CustomerRepository(Angular7NetCoreStoreContext context)
     : base(context)
 {
 }