LevelScoreRateController.cs 376 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.ScoreManage
  7. {
  8. [Authorization]
  9. public class LevelScoreRateController : Controller
  10. {
  11. //
  12. // GET: /LevelScoreRate/
  13. public ActionResult Report()
  14. {
  15. return View();
  16. }
  17. }
  18. }