Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs @ 286:a8f7c41e3b47
#196: Patrocinadores, en el histórico de eventos.
author | juanjose.montesdeocaarbos |
---|---|
date | Mon, 02 Jan 2012 15:51:19 -0300 |
parents | 11545cc95491 |
children |
comparison
equal
deleted
inserted
replaced
285:c8f378272407 | 286:a8f7c41e3b47 |
---|---|
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 Ponentes = e.Ponentes.Select(p=>p.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 Patrocinadores = from p in e.Patrocinadores | |
29 orderby p.Nombre ascending | |
30 select new PatrocinadorDto() | |
31 { | |
32 Id = p.Id, | |
33 Nombre = p.Nombre | |
34 } | |
28 } | 35 } |
29 }; | 36 }; |
30 return View(model); | 37 return View(model); |
31 } | 38 } |
32 } | 39 } |