public BaseService(JinShopContext context) { _context = context; _dbSet = _context.Set <TEntity>(); }
public CategoryService(JinShopContext context) : base(context) { _context = context; _dbset = _context.Set <Category>(); }
public ProductService(JinShopContext context) : base(context) { _context = context; _dbSet = _context.Set <Product>(); }