diff Agendas/trunk/src/Agendas.Google/DetailsEvents/VanGEventDetail.cs @ 229:33976aea7546

Varios Ponentes en calendario
author nelopauselli
date Wed, 28 Sep 2011 19:14:49 -0300
parents cd96cfc8a1f5
children e5959f3405e0
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Google/DetailsEvents/VanGEventDetail.cs	Wed Sep 28 18:51:53 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Google/DetailsEvents/VanGEventDetail.cs	Wed Sep 28 19:14:49 2011 -0300
@@ -1,5 +1,7 @@
 using System;
+using System.Collections.Generic;
 using System.Globalization;
+using System.Linq;
 using AltNetHispano.Agendas.Domain;
 
 namespace AltNetHispano.Agendas.Google.DetailsEvents
@@ -29,7 +31,7 @@
             var cultureInfo = new CultureInfo( "es-ES", false ).DateTimeFormat;
 
             Summary = TextoVan.Replace("[NOMBRE]", evento.Titulo).
-                Replace("[NOMBRE_EXPOSITOR]", evento.Ponente.Nombre).
+				Replace("[NOMBRE_EXPOSITOR]", evento.GetPonentesAsString(p => p.Nombre)).
                 Replace("[FECHA]", StartEvent.ToString("D", cultureInfo)).
                 Replace("[URL_DISCUCION]", evento.UrlInvitacion);
         }