Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Twitter/Writers/AgendarTwitterWriter.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 |
---|---|
1 using System; | 1 using AltNetHispano.Agendas.Domain; |
2 using AltNetHispano.Agendas.Domain; | |
3 | 2 |
4 namespace AltNetHispano.Agendas.Twitter.Writers | 3 namespace AltNetHispano.Agendas.Twitter.Writers |
5 { | 4 { |
6 public class AgendarTwitterWriter : ITwitterWriter | 5 public class AgendarTwitterWriter : ITwitterWriter |
7 { | 6 { |
8 public string Write(Track track) | 7 public string[] Write(Track track) |
9 { | 8 { |
10 var body = "Se ha agendando el evento " + track.Evento.Titulo; | 9 return new[] |
11 | 10 { |
12 body += " con " + TwitterHelper.GetPonente(track.Evento.Ponente); | 11 "Se ha agendando el evento " + track.Evento.Titulo, |
12 " con " + TwitterHelper.GetPonentes(track.Evento.Ponentes), | |
13 track.Evento.FechaInicio.HasValue | |
14 ? " para el " + track.Evento.FechaInicio.Value.ToShortDateString() | |
15 : string.Empty, | |
16 " por http://snipr.com/virtualaltnet" | |
17 }; | |
13 | 18 |
14 if (track.Evento.FechaInicio.HasValue) | 19 |
15 body += " para el " + track.Evento.FechaInicio.Value.ToShortDateString(); | |
16 return body; | |
17 } | 20 } |
18 } | 21 } |
19 } | 22 } |