Files
InventoryTracker/InventoryTraker.Web/Controllers/HomeController.cs
T
2016-08-08 14:47:35 -04:00

12 lines
179 B
C#

using System.Web.Mvc;
namespace InventoryTraker.Web.Controllers
{
public class HomeController : ControllerBase
{
public ActionResult Index()
{
return View();
}
}
}