using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace Learun.Application.Web.Areas.Statistics.Controllers { public class StudentAttendanceReportController : Controller { // GET: Statistics/StudentAttendanceReport public ActionResult Index() { return View(); } } }