public ProductQueryRepository(EkartQueryContext context) : base(context)
 {
 }
Example #2
0
 public QueryUnitOfWork(EkartQueryContext context)
 {
     ProductQueryRepository = new ProductQueryRepository(context);
 }
 protected BaseQueryRepository(EkartQueryContext context)
 {
     context = context;
     _dbSet  = context.Set <T>();
 }