SupervisionTotalController.cs 577 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace EMIS.Web.Controllers.SupervisionManage
  7. {
  8. [Authorization]
  9. public class SupervisionTotalController : Controller
  10. {
  11. //
  12. // GET: /SupervisionCollect/
  13. public ActionResult TotalList()
  14. {
  15. ViewBag.Month = DateTime.Now.Month;
  16. return View();
  17. }
  18. public ActionResult PersonalList()
  19. {
  20. ViewBag.Month = DateTime.Now.Month;
  21. return View();
  22. }
  23. }
  24. }