Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Twitter/TwitterStringHelper.cs @ 217:c4c60e034103 deploy 2011-09-06
sugerencia de recordatorios
author | nelopauselli |
---|---|
date | Tue, 06 Sep 2011 18:09:43 -0300 |
parents | |
children | e5959f3405e0 |
comparison
equal
deleted
inserted
replaced
216:8a8c35302b81 | 217:c4c60e034103 |
---|---|
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 | |
23 public static string Ponente(Persona ponente) | |
24 { | |
25 return "@"+ponente.Twitter; | |
26 } | |
27 | |
28 public static string Hora(DateTime fechaInicio) | |
29 { | |
30 return fechaInicio.Minute == 0 ? fechaInicio.Hour + "GMT" : fechaInicio.Hour + ":" + fechaInicio.Minute + "GMT"; | |
31 } | |
32 } | |
33 } |