Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Twitter/Writers/ConfirmarTwitterWriter.cs @ 228:9f61e8555114
Nombrando a todos los ponentes en los twitter y partiendo los mensajes que superan el máximo permitido
author | nelopauselli |
---|---|
date | Wed, 28 Sep 2011 18:51:53 -0300 |
parents | 2d02adb79322 |
children | 33976aea7546 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Twitter/Writers/ConfirmarTwitterWriter.cs Wed Sep 28 08:57:34 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Twitter/Writers/ConfirmarTwitterWriter.cs Wed Sep 28 18:51:53 2011 -0300 @@ -4,13 +4,17 @@ { public class ConfirmarTwitterWriter : ITwitterWriter { - public string Write(Track track) + public string[] Write(Track track) { { if (track.Evento.FechaInicio.HasValue) - return "Se confirma para el " + track.Evento.FechaInicio.Value.ToShortDateString() + " el evento " + track.Evento.Titulo + - " con " + TwitterHelper.GetPonente(track.Evento.Ponente); - return string.Empty; + return new[] + { + "Se confirma para el " + track.Evento.FechaInicio.Value.ToShortDateString(), + " el evento " + track.Evento.Titulo, + " con " + TwitterHelper.GetPonentes(track.Evento.Ponentes) + }; + return new[] {string.Empty}; } } }