view Agendas/trunk/src/Agendas.Web/Controllers/HomeController.cs @ 107:1ee5711256db

Utilizando Twitterizer en adapter a Twitter
author Nelo@Kenia.neluz.int
date Tue, 07 Jun 2011 21:03:56 -0300
parents 475be11edf56
children
line wrap: on
line source

using System.Web.Mvc;

namespace AltNetHispano.Agendas.Web.Controllers
{
    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            return View();
        }

        public ActionResult About()
        {
            return View();
        }
    }
}