view Agendas/trunk/src/Agendas.Web/Controllers/HomeController.cs @ 55:39f5258ebdcf

Agregando referencias con NuGet
author nelopauselli
date Mon, 16 May 2011 20:10:45 -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();
        }
    }
}