Mercurial > altnet-hispano
comparison 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 |
comparison
equal
deleted
inserted
replaced
184:2a336a6a76b5 | 185:2d02adb79322 |
---|---|
22 | 22 |
23 public void Generate(Evento evento) | 23 public void Generate(Evento evento) |
24 { | 24 { |
25 Title = "VAN sobre " + evento.Titulo; | 25 Title = "VAN sobre " + evento.Titulo; |
26 Location = "http://snipr.com/virtualaltnet"; | 26 Location = "http://snipr.com/virtualaltnet"; |
27 if (evento.Fecha != null) | 27 if (evento.FechaInicio != null) |
28 StartEvent = new DateTime(evento.Fecha.Value.Year, evento.Fecha.Value.Month, evento.Fecha.Value.Day, | 28 StartEvent = new DateTime(evento.FechaInicio.Value.Year, evento.FechaInicio.Value.Month, evento.FechaInicio.Value.Day, |
29 18, 0, 0, DateTimeKind.Utc); | 29 18, 0, 0, DateTimeKind.Utc); |
30 EndEvent = StartEvent.AddHours(2); | 30 EndEvent = StartEvent.AddHours(2); |
31 | 31 |
32 var cultureInfo = new CultureInfo( "es-ES", false ).DateTimeFormat; | 32 var cultureInfo = new CultureInfo( "es-ES", false ).DateTimeFormat; |
33 | 33 |