# HG changeset patch # User jorge.rowies # Date 1306870284 10800 # Node ID 24e9488ac152b294e4ebbca2662e8e2e6397100a # Parent 05f5f7307957b3a829e8f44227545dad9a0e9052 mapeo de property UrlInvitacion entre viewmodel y entity diff -r 05f5f7307957 -r 24e9488ac152 Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs --- a/Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs Tue May 31 16:12:58 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs Tue May 31 16:31:24 2011 -0300 @@ -55,7 +55,8 @@ Id = id, Titulo = evento.Titulo, Ponente = evento.Ponente != null ? evento.Ponente.Nombre : string.Empty, - Fecha = evento.Fecha + Fecha = evento.Fecha, + UrlInvitacion = evento.UrlInvitacion }; return View(model); }