示例#1
0
        // GET: Product
        public ActionResult Index()
        {
            ProductServiceClient psc = new ProductServiceClient();

            ViewBag.listProducts = psc.FindAll();
            return(View());
        }