diff 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
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs	Sat Dec 31 14:45:55 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs	Mon Jan 02 15:51:19 2012 -0300
@@ -24,7 +24,14 @@
 													Ponentes = e.Ponentes.Select(p=>p.Nombre),
                                                     Numero = e.NumeroOrden.ToString(),
                                                     Tipo = e.Tipo.ToString(),
-													Duracion = e.Duracion.ToString(@"hh\:mm")
+													Duracion = e.Duracion.ToString(@"hh\:mm"),
+													Patrocinadores = from p in e.Patrocinadores
+																	 orderby p.Nombre ascending 
+																	 select new PatrocinadorDto()
+																	        	{
+																	        		Id = p.Id,
+																					Nombre = p.Nombre
+																	        	}
 			            		               	}
 			            	};
 			return View(model);