示例#1
0
        public IHttpActionResult GetProductList()
        {
            int      stateid = Convert.ToInt32(HttpContext.Current.Request.Form["TypeId"]);
            LzHandle Handle  = new LzHandle();
            string   strJson = Handle.GetProductList(stateid);

            return(Ok(strJson));
        }