Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Twitter/TwitterStringHelper.cs @ 231:e5959f3405e0
Eventos sin ponentes
author | nelopauselli |
---|---|
date | Wed, 28 Sep 2011 20:02:44 -0300 |
parents | c4c60e034103 |
children |
comparison
equal
deleted
inserted
replaced
230:e38d53a1ead9 | 231:e5959f3405e0 |
---|---|
18 default: | 18 default: |
19 return string.Empty; | 19 return string.Empty; |
20 } | 20 } |
21 } | 21 } |
22 | 22 |
23 public static string Ponente(Persona ponente) | 23 public static string Ponentes(Evento evento) |
24 { | 24 { |
25 return "@"+ponente.Twitter; | 25 var ponentes = evento.GetPonentesAsString(p => "@" + p.Twitter); |
26 return !string.IsNullOrWhiteSpace(ponentes) ? " con " + ponentes : string.Empty; | |
26 } | 27 } |
27 | 28 |
28 public static string Hora(DateTime fechaInicio) | 29 public static string Hora(DateTime fechaInicio) |
29 { | 30 { |
30 return fechaInicio.Minute == 0 ? fechaInicio.Hour + "GMT" : fechaInicio.Hour + ":" + fechaInicio.Minute + "GMT"; | 31 return fechaInicio.Minute == 0 ? fechaInicio.Hour + "GMT" : fechaInicio.Hour + ":" + fechaInicio.Minute + "GMT"; |