BrainWare-test/Web/Controllers/HomeController.cs

21 lines
310 B
C#
Raw Normal View History

2018-06-05 16:14:15 +00:00
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();
}
}
}