comparison Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs @ 145:e6e6bfb1da9e

En la edición de un evento (nuevo, propuesta, modificación), el ponente se selecciona desde un combo.
author Nelo@Guinea.neluz.int
date Mon, 01 Aug 2011 11:42:24 -0300
parents a2b14da4902f
children 23aaf98b8377
comparison
equal deleted inserted replaced
144:a2b14da4902f 145:e6e6bfb1da9e
91 91
92 var model = new EventoEditModel 92 var model = new EventoEditModel
93 { 93 {
94 Id = id, 94 Id = id,
95 Titulo = evento.Titulo, 95 Titulo = evento.Titulo,
96 Ponente = evento.Ponente != null ? evento.Ponente.Nombre : string.Empty, 96 Ponente = evento.Ponente != null ? evento.Ponente.Id : Guid.Empty,
97 Fecha = evento.Fecha, 97 Fecha = evento.Fecha,
98 UrlInvitacion = evento.UrlInvitacion 98 UrlInvitacion = evento.UrlInvitacion
99 }; 99 };
100 return View(model); 100 return View(model);
101 } 101 }
127 127
128 var model = new EventoAgendarModel 128 var model = new EventoAgendarModel
129 { 129 {
130 Id = id, 130 Id = id,
131 Titulo = evento.Titulo, 131 Titulo = evento.Titulo,
132 Ponente = evento.Ponente != null ? evento.Ponente.Nombre : string.Empty, 132 Ponente = evento.Ponente != null ? evento.Ponente.Id : Guid.Empty,
133 Fecha = evento.Fecha, 133 Fecha = evento.Fecha,
134 UrlInvitacion = evento.UrlInvitacion 134 UrlInvitacion = evento.UrlInvitacion
135 }; 135 };
136 return View(model); 136 return View(model);
137 } 137 }