Example #1
0
        public ActionResult Index()
        {
            string xmlICOInfo = render.GenerateXmlFromObject(null, new
            {
                pageNumber    = 0,
                pageSize      = int.MaxValue,
                sortDataField = "ID",
                sortOrder     = "asc"
            }, "52", "Frontend_List");
            var     tblICOInfo = db.GetContextData(xmlICOInfo);
            ICOInfo icoInfo    = render.ResponseObject <ICOInfo>(tblICOInfo.Tables[0]);

            return(View(icoInfo));
        }