Files
2026-04-02 17:14:55 +02:00

23 lines
423 B
C#

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
}
}