217
|
1 using System;
|
|
2 using AltNetHispano.Agendas.Domain;
|
|
3
|
|
4 namespace AltNetHispano.Agendas.Twitter
|
|
5 {
|
|
6 public static class TwitterStringHelper
|
|
7 {
|
|
8 public static string TipoEvento(TipoEvento tipo)
|
|
9 {
|
|
10 switch (tipo)
|
|
11 {
|
|
12 case Domain.TipoEvento.Van:
|
|
13 return "La VAN";
|
|
14 case Domain.TipoEvento.Cafe:
|
|
15 return "El " + tipo;
|
|
16 case Domain.TipoEvento.GrupoEstudio:
|
|
17 return "El Grupo de estudio";
|
|
18 default:
|
|
19 return string.Empty;
|
|
20 }
|
|
21 }
|
|
22
|
231
|
23 public static string Ponentes(Evento evento)
|
217
|
24 {
|
231
|
25 var ponentes = evento.GetPonentesAsString(p => "@" + p.Twitter);
|
|
26 return !string.IsNullOrWhiteSpace(ponentes) ? " con " + ponentes : string.Empty;
|
217
|
27 }
|
|
28
|
|
29 public static string Hora(DateTime fechaInicio)
|
|
30 {
|
|
31 return fechaInicio.Minute == 0 ? fechaInicio.Hour + "GMT" : fechaInicio.Hour + ":" + fechaInicio.Minute + "GMT";
|
|
32 }
|
|
33 }
|
|
34 } |