Ejemplo n.º 1
0
        public JsonResult GetProductCount(string ProductName)
        {
            int ProductCount = VendingService.GetProductCount(ProductName);

            return(Json(new { ProductCount = ProductCount }, JsonRequestBehavior.AllowGet));
        }