comparison 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
comparison
equal deleted inserted replaced
9:c90492faf268 10:c62b77fc33f4
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 }