diff Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs @ 141:a5ff4de4a1d3

EditorForModel en Nuevo Evento y Proponer
author Nelo@Guinea.neluz.int
date Mon, 01 Aug 2011 00:10:20 -0300
parents 3639803112c6
children a2b14da4902f
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs	Fri Jul 29 16:30:53 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs	Mon Aug 01 00:10:20 2011 -0300
@@ -52,7 +52,7 @@
 				var agenda = AgendaFactory.GetAgenda();
 
 				var r = agenda.Agendar(model.Titulo, model.Ponente, model.Fecha,
-				  model.UrlInvitacion, (TipoEvento)model.Tipo);
+				  model.UrlInvitacion, (TipoEvento)model.TipoEvento);
 				if (r.Succeful)
 				{
 					this.AddNotification("Datos guardados");
@@ -169,7 +169,7 @@
 			{
 				var agenda = AgendaFactory.GetAgenda();
 
-				var r = agenda.Proponer(model.Titulo, model.Ponente, model.UrlInvitacion, (TipoEvento)model.Tipo);
+				var r = agenda.Proponer(model.Titulo, model.Ponente, model.UrlInvitacion, (TipoEvento)model.TipoEvento);
 				if (r.Succeful)
 					return RedirectToAction("Index");
 				ModelState.AddModelError("error", r.ToString());