comparison Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs @ 225:f23ee59ef1bd

Otros ponentes
author nelopauselli
date Mon, 26 Sep 2011 08:47:01 -0300
parents c4c60e034103
children c61954d24c8c
comparison
equal deleted inserted replaced
224:de6d206bd5c3 225:f23ee59ef1bd
59 { 59 {
60 return 60 return
61 GenericAction( 61 GenericAction(
62 (agenda, m) => agenda.Agendar(m.Titulo, m.Ponente, GenerarFechaInicio(m.Fecha, m.Hora), 62 (agenda, m) => agenda.Agendar(m.Titulo, m.Ponente, GenerarFechaInicio(m.Fecha, m.Hora),
63 GenerarFechaTermino(m.Fecha, m.Hora, m.Duracion), m.UrlInvitacion, 63 GenerarFechaTermino(m.Fecha, m.Hora, m.Duracion), m.UrlInvitacion,
64 (TipoEvento) m.TipoEvento), 64 (TipoEvento) m.TipoEvento, model.OtrosPonentes),
65 m => View("Defaulteditor", m), 65 m => View("Defaulteditor", m),
66 model); 66 model);
67 } 67 }
68 68
69 [CustomAuthorize(Roles = Roles.Administrador)] 69 [CustomAuthorize(Roles = Roles.Administrador)]