comparison Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs @ 171:4e4b758ab744

Ticket 155: Se carga la DuraciĆ³n correcta, formateada en HH:MM
author juanjose.montesdeocaarbos
date Sat, 06 Aug 2011 13:46:56 -0300
parents c1062de96845
children 2d02adb79322
comparison
equal deleted inserted replaced
170:13b661a29242 171:4e4b758ab744
22 Fecha = e.Fecha.HasValue ? e.Fecha.Value.ToShortDateString() : string.Empty, 22 Fecha = e.Fecha.HasValue ? e.Fecha.Value.ToShortDateString() : string.Empty,
23 Wiki = e.UrlWiki, 23 Wiki = e.UrlWiki,
24 Ponente = e.Ponente.Nombre, 24 Ponente = e.Ponente.Nombre,
25 Numero = e.NumeroOrden.ToString(), 25 Numero = e.NumeroOrden.ToString(),
26 Tipo = e.Tipo.ToString(), 26 Tipo = e.Tipo.ToString(),
27 Duracion = "0:00" //TODO: e.GetEvento() 27 Duracion = e.Duracion.ToString(@"hh\:mm")
28 } 28 }
29 }; 29 };
30 return View(model); 30 return View(model);
31 } 31 }
32 } 32 }