Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.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 | 4e4b758ab744 |
children | 85ddae313408 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs Mon Aug 08 22:32:12 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs Tue Aug 09 01:04:27 2011 -0400 @@ -14,12 +14,12 @@ var model = new HistoricoIndexModel { Items = from e in agenda.GetHistorico() - orderby e.Fecha + orderby e.FechaInicio select new HistoricoDto { Id = e.Id.ToString(), Titulo = e.Titulo, - Fecha = e.Fecha.HasValue ? e.Fecha.Value.ToShortDateString() : string.Empty, + Fecha = e.FechaInicio.HasValue ? e.FechaInicio.Value.ToShortDateString() : string.Empty, Wiki = e.UrlWiki, Ponente = e.Ponente.Nombre, Numero = e.NumeroOrden.ToString(),