using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace Core.Web.Controllers { public class ExamController : BaseController { public ActionResult QuestionsManagement() { return View(); } } }