Example #1
0
        public ActionResult GetModelList(DividPage page, Check_Model model)
        {
            List <Check_Model> modelList = new List <Check_Model>();
            string             strError  = "";

            tfun.GetCheckInfo(model, ref page, ref modelList, ref strError);
            ViewData["PageData"] = new PageData <Check_Model> {
                data = modelList, dividPage = page, link = Common.PageTag.ModelToUriParam(model, "/Check/GetModelList")
            };
            return(View("GetModelList", model));
        }
Example #2
0
        public bool GetCheckInfo(Check_Model taskmo, ref DividPage dividpage, ref List <Check_Model> lsttask, ref string strErrMsg)
        {
            Check_DB db = new Check_DB();

            return(db.GetCheckInfo(taskmo, ref dividpage, ref lsttask, ref strErrMsg));
        }