diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Agendas/trunk/src/Agendas.Twitter/TwitterStringHelper.cs	Tue Sep 06 18:09:43 2011 -0300
@@ -0,0 +1,33 @@
+using System;
+using AltNetHispano.Agendas.Domain;
+
+namespace AltNetHispano.Agendas.Twitter
+{
+	public static class TwitterStringHelper
+	{
+		public static string TipoEvento(TipoEvento tipo)
+		{
+			switch (tipo)
+			{
+				case Domain.TipoEvento.Van:
+					return "La VAN";
+				case Domain.TipoEvento.Cafe:
+					return "El " + tipo;
+				case Domain.TipoEvento.GrupoEstudio:
+					return "El Grupo de estudio";
+				default:
+					return string.Empty;
+			}
+		}
+
+		public static string Ponente(Persona ponente)
+		{
+			return "@"+ponente.Twitter;
+		}
+
+		public static string Hora(DateTime fechaInicio)
+		{
+			return fechaInicio.Minute == 0 ? fechaInicio.Hour + "GMT" : fechaInicio.Hour + ":" + fechaInicio.Minute + "GMT";
+		}
+	}
+}
\ No newline at end of file