Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Web/Controllers/PropuestaController.cs @ 82:c8897b1c6f49
Manejo de excepciones en sitio web
author | nelopauselli |
---|---|
date | Tue, 24 May 2011 19:31:10 -0300 |
parents | 8df9db937434 |
children | db4b1e2cae49 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Controllers/PropuestaController.cs Tue May 24 19:21:20 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Web/Controllers/PropuestaController.cs Tue May 24 19:31:10 2011 -0300 @@ -54,19 +54,15 @@ { var agenda = AgendaFactory.GetAgenda(); var propuesta = agenda.GetEvento(new Guid(id)); - if (propuesta != null) - { - var model = new PropuestaEditModel - { - Id = id, - Titulo = propuesta.Titulo, - Ponente = propuesta.Ponente != null ? propuesta.Ponente.Nombre : string.Empty, - UrlInvitacion = propuesta.UrlInvitacion - }; - return View(model); - } - ModelState.AddModelError("error", "No se encontrĂ³ el Propuesta que quiere modificar"); - return View(); + + var model = new PropuestaEditModel + { + Id = id, + Titulo = propuesta.Titulo, + Ponente = propuesta.Ponente != null ? propuesta.Ponente.Nombre : string.Empty, + UrlInvitacion = propuesta.UrlInvitacion + }; + return View(model); } [HttpPost]