BrainWare-test/Web/Controllers/HomeController.cs
2018-06-05 12:14:15 -04:00

21 lines
310 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()
{
return View();
}
}
}