Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs @ 225:f23ee59ef1bd
Otros ponentes
author | nelopauselli |
---|---|
date | Mon, 26 Sep 2011 08:47:01 -0300 |
parents | 85ddae313408 |
children | 11545cc95491 |
line wrap: on
line source
using System.Linq; using System.Web.Mvc; using AltNetHispano.Agendas.Factories; using AltNetHispano.Agendas.Web.Models; namespace AltNetHispano.Agendas.Web.Controllers { public class HistoricoController : Controller { public ActionResult Index() { var agenda = AgendaFactory.GetAgenda(); var model = new HistoricoIndexModel { Items = from e in agenda.GetHistorico() orderby e.NumeroOrden descending select new HistoricoDto { Id = e.Id.ToString(), Titulo = e.Titulo, Fecha = e.FechaInicio.HasValue ? e.FechaInicio.Value.ToShortDateString() : string.Empty, Wiki = e.UrlWiki, Ponente = e.Ponente.Nombre, Numero = e.NumeroOrden.ToString(), Tipo = e.Tipo.ToString(), Duracion = e.Duracion.ToString(@"hh\:mm") } }; return View(model); } } }