Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs @ 244:31fb96912d37
Ticket 162: Publicaciones con Nro Orden repetido.
author | juanjose.montesdeocaarbos |
---|---|
date | Thu, 06 Oct 2011 09:09:37 -0300 |
parents | 11545cc95491 |
children | a8f7c41e3b47 |
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, Ponentes = e.Ponentes.Select(p=>p.Nombre), Numero = e.NumeroOrden.ToString(), Tipo = e.Tipo.ToString(), Duracion = e.Duracion.ToString(@"hh\:mm") } }; return View(model); } } }