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