Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Twitter/Writers/PublicarTwitterWriter.cs @ 229:33976aea7546
Varios Ponentes en calendario
author | nelopauselli |
---|---|
date | Wed, 28 Sep 2011 19:14:49 -0300 |
parents | 9f61e8555114 |
children | e5959f3405e0 |
comparison
equal
deleted
inserted
replaced
228:9f61e8555114 | 229:33976aea7546 |
---|---|
1 using AltNetHispano.Agendas.Domain; | 1 using System; |
2 using AltNetHispano.Agendas.Domain; | |
2 | 3 |
3 namespace AltNetHispano.Agendas.Twitter.Writers | 4 namespace AltNetHispano.Agendas.Twitter.Writers |
4 { | 5 { |
5 public class PublicarTwitterWriter : ITwitterWriter | 6 public class PublicarTwitterWriter : ITwitterWriter |
6 { | 7 { |
7 public string[] Write(Track track) | 8 public string[] Write(Track track) |
8 { | 9 { |
9 return new[] | 10 return new[] |
10 { | 11 { |
11 "Se ha publicado el video del evento " + track.Evento.Titulo, | 12 "Se ha publicado el video del evento " + track.Evento.Titulo, |
12 " con " + TwitterHelper.GetPonentes(track.Evento.Ponentes) | 13 " con " + TwitterHelper.GetPonentes(track.Evento) |
13 }; | 14 }; |
14 } | 15 } |
15 } | 16 } |
16 } | 17 } |