diff Agendas/trunk/src/Agendas.Domain/Agenda.cs @ 82:c8897b1c6f49

Manejo de excepciones en sitio web
author nelopauselli
date Tue, 24 May 2011 19:31:10 -0300
parents c76661cff260
children 26d0513a8410
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Agenda.cs	Tue May 24 19:21:20 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Domain/Agenda.cs	Tue May 24 19:31:10 2011 -0300
@@ -39,9 +39,9 @@
 			return _eventosRepository.GetEventosConFecha() ?? new List<Evento>();
 		}
 
-		public Resultado ModificarEvento(Guid id, string titulo, string ponenteNombre, DateTime? fecha, string urlInvitacion)
+		public Resultado ModificarEvento(Guid eventoId, string titulo, string ponenteNombre, DateTime? fecha, string urlInvitacion)
 		{
-			Evento evento = GetEvento(id);
+			Evento evento = GetEvento(eventoId);
 
 			Ponente ponente = null;
 			if (!string.IsNullOrWhiteSpace(ponenteNombre))