Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Controllers/HomeController.cs @ 10:c62b77fc33f4
website inicial
author | nelo@MTEySS.neluz.int |
---|---|
date | Sun, 13 Mar 2011 18:51:06 -0300 |
parents | |
children | 475be11edf56 |
rev | line source |
---|---|
10 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Web; | |
5 using System.Web.Mvc; | |
6 | |
7 namespace Agendas.Web.Controllers | |
8 { | |
9 public class HomeController : Controller | |
10 { | |
11 public ActionResult Index() | |
12 { | |
13 return View(); | |
14 } | |
15 | |
16 public ActionResult About() | |
17 { | |
18 return View(); | |
19 } | |
20 } | |
21 } |