Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Google/DetailsEvents/VanGEventDetail.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 | 0ea32a748453 |
children | cd96cfc8a1f5 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Google/DetailsEvents/VanGEventDetail.cs Mon Aug 08 22:32:12 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Google/DetailsEvents/VanGEventDetail.cs Tue Aug 09 01:04:27 2011 -0400 @@ -24,8 +24,8 @@ { Title = "VAN sobre " + evento.Titulo; Location = "http://snipr.com/virtualaltnet"; - if (evento.Fecha != null) - StartEvent = new DateTime(evento.Fecha.Value.Year, evento.Fecha.Value.Month, evento.Fecha.Value.Day, + if (evento.FechaInicio != null) + StartEvent = new DateTime(evento.FechaInicio.Value.Year, evento.FechaInicio.Value.Month, evento.FechaInicio.Value.Day, 18, 0, 0, DateTimeKind.Utc); EndEvent = StartEvent.AddHours(2);