コード例 #1
0
        public PartialViewResult Edit(string chexing)
        {
            tbl_chexing model = null;

            if (!string.IsNullOrEmpty(chexing))
            {
                CommonBll common = new CommonBll();
                model = common.QueryCheXing(chexing);
            }
            return(PartialView(model));
        }