using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace EMIS.Web.Controllers.StudentManage.StudentProfile { [Authorization] public class StudentStatisticController : Controller { public ActionResult Statistic1() { return View(); } public ActionResult Statistic2() { return View(); } } }