diff Agendas/trunk/src/Agendas.Domain/Agenda.cs @ 59:4a4e12e32256

Poder quitar un ponente de un evento propuesto
author nelopauselli
date Mon, 16 May 2011 20:32:37 -0300
parents 3d9e6d56d903
children c7264bfc4b71
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Agenda.cs	Mon May 16 20:24:50 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Domain/Agenda.cs	Mon May 16 20:32:37 2011 -0300
@@ -42,7 +42,9 @@
 			if (evento == null)
 				throw new EventoNotFoundException(id);
 
-			Ponente ponente = GetPonente(ponenteNombre);
+			Ponente ponente=null;
+			if (!string.IsNullOrWhiteSpace(ponenteNombre))
+				ponente = GetPonente(ponenteNombre);
 
 			if (evento.Titulo != titulo)
 				evento.CambiarTitulo(titulo);