comparison Agendas/trunk/src/Agendas.Twitter/Writers/ConfirmarTwitterWriter.cs @ 231:e5959f3405e0

Eventos sin ponentes
author nelopauselli
date Wed, 28 Sep 2011 20:02:44 -0300
parents 33976aea7546
children
comparison
equal deleted inserted replaced
230:e38d53a1ead9 231:e5959f3405e0
10 if (track.Evento.FechaInicio.HasValue) 10 if (track.Evento.FechaInicio.HasValue)
11 return new[] 11 return new[]
12 { 12 {
13 "Se confirma para el " + track.Evento.FechaInicio.Value.ToShortDateString(), 13 "Se confirma para el " + track.Evento.FechaInicio.Value.ToShortDateString(),
14 " el evento " + track.Evento.Titulo, 14 " el evento " + track.Evento.Titulo,
15 " con " + TwitterHelper.GetPonentes(track.Evento) 15 TwitterHelper.GetPonentes(track.Evento)
16 }; 16 };
17 return new[] {string.Empty}; 17 return new[] {string.Empty};
18 } 18 }
19 } 19 }
20 } 20 }