Ejemplo n.º 1
0
        // GET: SystemParameter
        /// <summary>
        /// 取得功能參數清單
        /// </summary>
        /// <returns></returns>
        public ActionResult Index()
        {
            log.Info("index");
            SelectList paraFunction = new SelectList(service.getParaIndex(), "FUNCTION_ID", "FUNCTION_DESC");

            ViewBag.paraFunction = paraFunction;
            return(View());
        }