comparison Agendas/trunk/src/Agendas.Twitter/TwitterStringHelper.cs @ 234:cc71f96ac134

Combinar
author juanjose.montesdeocaarbos
date Tue, 04 Oct 2011 20:36:27 -0300
parents e5959f3405e0
children
comparison
equal deleted inserted replaced
233:32e4e0e7a140 234:cc71f96ac134
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";