Mercurial > altnet-hispano
comparison 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 |
comparison
equal
deleted
inserted
replaced
227:11545cc95491 | 228:9f61e8555114 |
---|---|
2 | 2 |
3 namespace AltNetHispano.Agendas.Twitter.Writers | 3 namespace AltNetHispano.Agendas.Twitter.Writers |
4 { | 4 { |
5 public class ConfirmarTwitterWriter : ITwitterWriter | 5 public class ConfirmarTwitterWriter : ITwitterWriter |
6 { | 6 { |
7 public string Write(Track track) | 7 public string[] Write(Track track) |
8 { | 8 { |
9 { | 9 { |
10 if (track.Evento.FechaInicio.HasValue) | 10 if (track.Evento.FechaInicio.HasValue) |
11 return "Se confirma para el " + track.Evento.FechaInicio.Value.ToShortDateString() + " el evento " + track.Evento.Titulo + | 11 return new[] |
12 " con " + TwitterHelper.GetPonente(track.Evento.Ponente); | 12 { |
13 return string.Empty; | 13 "Se confirma para el " + track.Evento.FechaInicio.Value.ToShortDateString(), |
14 " el evento " + track.Evento.Titulo, | |
15 " con " + TwitterHelper.GetPonentes(track.Evento.Ponentes) | |
16 }; | |
17 return new[] {string.Empty}; | |
14 } | 18 } |
15 } | 19 } |
16 } | 20 } |
17 } | 21 } |