Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Twitter/Writers/TwitterHelper.cs @ 231:e5959f3405e0
Eventos sin ponentes
author | nelopauselli |
---|---|
date | Wed, 28 Sep 2011 20:02:44 -0300 |
parents | 33976aea7546 |
children |
rev | line source |
---|---|
229 | 1 using AltNetHispano.Agendas.Domain; |
124 | 2 |
3 namespace AltNetHispano.Agendas.Twitter.Writers | |
4 { | |
5 public static class TwitterHelper | |
6 { | |
229 | 7 public static string GetPonentes(Evento evento) |
228
9f61e8555114
Nombrando a todos los ponentes en los twitter y partiendo los mensajes que superan el máximo permitido
nelopauselli
parents:
124
diff
changeset
|
8 { |
231 | 9 var ponentes = evento.GetPonentesAsString(GetPonente); |
10 return !string.IsNullOrWhiteSpace(ponentes) ? " con " + ponentes : string.Empty; | |
228
9f61e8555114
Nombrando a todos los ponentes en los twitter y partiendo los mensajes que superan el máximo permitido
nelopauselli
parents:
124
diff
changeset
|
11 } |
9f61e8555114
Nombrando a todos los ponentes en los twitter y partiendo los mensajes que superan el máximo permitido
nelopauselli
parents:
124
diff
changeset
|
12 |
9f61e8555114
Nombrando a todos los ponentes en los twitter y partiendo los mensajes que superan el máximo permitido
nelopauselli
parents:
124
diff
changeset
|
13 private static string GetPonente(Persona ponente) |
124 | 14 { |
15 if (!string.IsNullOrWhiteSpace(ponente.Twitter)) | |
16 return "@" + ponente.Twitter; | |
17 return ponente.Nombre; | |
18 } | |
229 | 19 |
124 | 20 } |
21 } |