コード例 #1
0
ファイル: SerialController.cs プロジェクト: zk17727859826/OAS
        public PartialViewResult Edit(string serialno)
        {
            CommonBll    commbll = new CommonBll();
            sysserialset model   = null;

            if (!string.IsNullOrEmpty(serialno))
            {
                model = commbll.QuerySerialSet(serialno);
            }
            return(PartialView(model));
        }