diff Agendas/trunk/src/Agendas.Twitter/Writers/AgendarTwitterWriter.cs @ 185:2d02adb79322

Se agrega fecha de termino de un Evento y se incluye la hora a la fecha de inicio. Se modifica la propiedad Fecha del Evento, renombrandola FechaInicio. En el ModelView se agrega propiedades DuraciĆ³n y Hora del Evento cuando es Modificado, Nuevo y Agendado. Las fechas ingresadas son creadas en sistema UTC Queda pendiente Agregar duraciĆ³n a Google Calendar.
author alabra
date Tue, 09 Aug 2011 01:04:27 -0400
parents f8568f01da4d
children 9f61e8555114
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Twitter/Writers/AgendarTwitterWriter.cs	Mon Aug 08 22:32:12 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Twitter/Writers/AgendarTwitterWriter.cs	Tue Aug 09 01:04:27 2011 -0400
@@ -11,8 +11,8 @@
 			
 			body += " con " + TwitterHelper.GetPonente(track.Evento.Ponente);
 
-			if (track.Evento.Fecha.HasValue)
-				body += " para el " + track.Evento.Fecha.Value.ToShortDateString();
+			if (track.Evento.FechaInicio.HasValue)
+				body += " para el " + track.Evento.FechaInicio.Value.ToShortDateString();
 			return body;
 		}
 	}