public ActionResult AjaxView()
        {
            var model = _productApi.GetProductItem(ArrId.FirstOrDefault());

            return(View(model));
        }
示例#2
0
        public ActionResult GetPricebiProductID(int id)
        {
            var model = _productApi.GetProductItem(id);

            return(Json(model, JsonRequestBehavior.AllowGet));
        }