コード例 #1
0
 public void DeleteProductForEmailId(ProductIdArgs args)
 {
 }
コード例 #2
0
        public ProductCatalogEntity[] GetProductsByEmailId(ProductIdArgs args)
        {
            var response = this.dbContext.Query <ProductCatalogEntity>(args.EmailId);

            return(response.ToArray() ?? null);
        }
コード例 #3
0
 public void DeleteProduct(ProductIdArgs args)
 {
 }
コード例 #4
0
        public ProductCatalogEntity GetProduct(ProductIdArgs args)
        {
            var response = this.dbContext.Load <ProductCatalogEntity>(args.EmailId, args.ASIN);

            return(response);
        }