Files
2022-03-04 11:44:45 +01:00

21 lines
392 B
C#

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