21 lines
392 B
C#
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
|
|
}
|
|
} |