Esempio n. 1
0
        public ActionResult GetListSupplierProductById(int id)
        {
            var obj = new SupplieProductResponse {
                ListItem = _da.GetListSupplierProductById(Request, id), PageHtml = _da.GridHtmlPage
            };

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