comparison Agendas/trunk/src/Agendas.Twitter/Writers/ConfirmarTwitterWriter.cs @ 123:f8568f01da4d

Mejorando los mensajes en Twitter
author nelopauselli
date Tue, 28 Jun 2011 20:53:30 -0300
parents 17531db40d4e
children 2d02adb79322
comparison
equal deleted inserted replaced
122:17531db40d4e 123:f8568f01da4d
6 { 6 {
7 public string Write(Track track) 7 public string Write(Track track)
8 { 8 {
9 { 9 {
10 if (track.Evento.Fecha.HasValue) 10 if (track.Evento.Fecha.HasValue)
11 return "Se confirma para el " + track.Evento.Fecha.Value.ToShortDateString() + " el evento " + track.Evento.Titulo; 11 return "Se confirma para el " + track.Evento.Fecha.Value.ToShortDateString() + " el evento " + track.Evento.Titulo +
12 " con " + TwitterHelper.GetPonente(track.Evento.Ponente);
12 return string.Empty; 13 return string.Empty;
13 } 14 }
14 } 15 }
15 } 16 }
16 } 17 }