using System.Web.Mvc; namespace MileageTraker.Web.Controllers { public class HomeController : ControllerBase { public ActionResult About() { return View(); } } }