Files
C.TRACK/MP-MAG/Controllers/HomeController.cs
T
2020-03-08 14:14:09 +01:00

19 lines
296 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
{
public ActionResult Index()
{
ViewBag.Title = "Home Page";
return View();
}
}
}