Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs @ 227:11545cc95491
Mostrar todos los ponentes en el histórico
author | nelopauselli |
---|---|
date | Wed, 28 Sep 2011 08:57:34 -0300 |
parents | 85ddae313408 |
children | a8f7c41e3b47 |
comparison
equal
deleted
inserted
replaced
226:4d05b5883eac | 227:11545cc95491 |
---|---|
19 { | 19 { |
20 Id = e.Id.ToString(), | 20 Id = e.Id.ToString(), |
21 Titulo = e.Titulo, | 21 Titulo = e.Titulo, |
22 Fecha = e.FechaInicio.HasValue ? e.FechaInicio.Value.ToShortDateString() : string.Empty, | 22 Fecha = e.FechaInicio.HasValue ? e.FechaInicio.Value.ToShortDateString() : string.Empty, |
23 Wiki = e.UrlWiki, | 23 Wiki = e.UrlWiki, |
24 Ponente = e.Ponente.Nombre, | 24 Ponentes = e.Ponentes.Select(p=>p.Nombre), |
25 Numero = e.NumeroOrden.ToString(), | 25 Numero = e.NumeroOrden.ToString(), |
26 Tipo = e.Tipo.ToString(), | 26 Tipo = e.Tipo.ToString(), |
27 Duracion = e.Duracion.ToString(@"hh\:mm") | 27 Duracion = e.Duracion.ToString(@"hh\:mm") |
28 } | 28 } |
29 }; | 29 }; |