# HG changeset patch # User juanjose.montesdeocaarbos # Date 1312649216 10800 # Node ID 4e4b758ab744a1d6657ebcd10e6670a0da1af700 # Parent 13b661a29242af2413d8995f52d4a231c8d0254c Ticket 155: Se carga la DuraciĆ³n correcta, formateada en HH:MM diff -r 13b661a29242 -r 4e4b758ab744 Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs --- a/Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs Sat Aug 06 12:57:54 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs Sat Aug 06 13:46:56 2011 -0300 @@ -24,7 +24,7 @@ Ponente = e.Ponente.Nombre, Numero = e.NumeroOrden.ToString(), Tipo = e.Tipo.ToString(), - Duracion = "0:00" //TODO: e.GetEvento() + Duracion = e.Duracion.ToString(@"hh\:mm") } }; return View(model);