ZSController.cs 530 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace KJH55128_Rec.Controllers
  7. {
  8. public class ZSController : Controller
  9. {
  10. TrendChartMain.TrendChartSDK _main = new TrendChartMain.TrendChartSDK();
  11. // GET: ZS
  12. public ActionResult Index(int cid = 1)
  13. {
  14. string msg = "";
  15. ViewBag.ChartList = _main.GetTrendChartList(out msg, cid);
  16. ViewBag.num = 30;
  17. return View();
  18. }
  19. }
  20. }