Exemplo n.º 1
0
 public BaseService(JinShopContext context)
 {
     _context = context;
     _dbSet   = _context.Set <TEntity>();
 }
Exemplo n.º 2
0
 public CategoryService(JinShopContext context) : base(context)
 {
     _context = context;
     _dbset   = _context.Set <Category>();
 }
Exemplo n.º 3
0
 public ProductService(JinShopContext context) : base(context)
 {
     _context = context;
     _dbSet   = _context.Set <Product>();
 }