changeset 89:24e9488ac152

mapeo de property UrlInvitacion entre viewmodel y entity
author jorge.rowies
date Tue, 31 May 2011 16:31:24 -0300
parents 05f5f7307957
children d1688622fa88 4895116b8232
files Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);
 		}