12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace KJH55128_Rec.Controllers
- {
- public class ZSController : Controller
- {
- TrendChartMain.TrendChartSDK _main = new TrendChartMain.TrendChartSDK();
- // GET: ZS
- public ActionResult Index(int cid = 1)
- {
- string msg = "";
- ViewBag.ChartList = _main.GetTrendChartList(out msg, cid);
- ViewBag.num = 30;
- return View();
- }
- }
- }
|