12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace EMIS.Web.Controllers.ScoreManage
- {
- [Authorization]
- public class LevelScoreRateController : Controller
- {
- //
- // GET: /LevelScoreRate/
- public ActionResult Report()
- {
- return View();
- }
- }
- }
|