BrainWare-test/Web/Controllers/HomeController.cs
2020-05-05 15:14:17 -04:00

20 lines
354 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Web.Controllers
{
using Infrastructure;
public class HomeController : Controller
{
public ActionResult Index()
{
this.ViewBag.Title = "Home Page";
return View();
}
}
}