12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace EMIS.Web.Controllers.SupervisionManage
- {
- [Authorization]
- public class SupervisionTotalController : Controller
- {
- //
- // GET: /SupervisionCollect/
- public ActionResult TotalList()
- {
- ViewBag.Month = DateTime.Now.Month;
- return View();
- }
- public ActionResult PersonalList()
- {
- ViewBag.Month = DateTime.Now.Month;
- return View();
- }
- }
- }
|