public void DeleteProductForEmailId(ProductIdArgs args)
 {
 }
        public ProductCatalogEntity[] GetProductsByEmailId(ProductIdArgs args)
        {
            var response = this.dbContext.Query <ProductCatalogEntity>(args.EmailId);

            return(response.ToArray() ?? null);
        }
 public void DeleteProduct(ProductIdArgs args)
 {
 }
        public ProductCatalogEntity GetProduct(ProductIdArgs args)
        {
            var response = this.dbContext.Load <ProductCatalogEntity>(args.EmailId, args.ASIN);

            return(response);
        }