public IEnumerable <ProductEntity> GetProducts(IEnumerable <int> productIds)
 {
     return(ProductRepository.GetProducts(productIds));
 }
 public void Reset()
 {
     ProductRepository.Reset();
 }
 public IEnumerable <ProductEntity> GetProducts()
 {
     return(ProductRepository.GetProducts());
 }