StudentStatisticController.cs 441 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 EMIS.Web.Controllers.StudentManage.StudentProfile
  7. {
  8. [Authorization]
  9. public class StudentStatisticController : Controller
  10. {
  11. public ActionResult Statistic1()
  12. {
  13. return View();
  14. }
  15. public ActionResult Statistic2()
  16. {
  17. return View();
  18. }
  19. }
  20. }