using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace Frontend.Controllers { public class DashboardController : Controller { // GET: Dashboard public ActionResult Index() { return View(); } } }