13 lines
213 B
C#
13 lines
213 B
C#
|
namespace LOC.Website.Web.Controllers
|
|||
|
{
|
|||
|
using System.Web.Mvc;
|
|||
|
|
|||
|
public class AboutController : Controller
|
|||
|
{
|
|||
|
public ActionResult Index()
|
|||
|
{
|
|||
|
return View();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|