30 lines
535 B
C#
30 lines
535 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
|
|
|
|
#if false
|
|
public ActionResult Index()
|
|
{
|
|
ViewBag.Title = "Home Page";
|
|
|
|
return View();
|
|
}
|
|
#endif
|
|
}
|
|
} |