using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using MP_IO.Interfaces; namespace MP_IO.Controllers { public class HomeController : Controller, IHomeService { #region Public Methods // GET: Home public RedirectResult Index() { return Redirect("status"); } #endregion Public Methods } }