Mercurial > altnet-hispano
comparison 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 |
comparison
equal
deleted
inserted
replaced
58:37d99d239cae | 59:4a4e12e32256 |
---|---|
40 { | 40 { |
41 Evento evento = _eventosRepository.Get(id); | 41 Evento evento = _eventosRepository.Get(id); |
42 if (evento == null) | 42 if (evento == null) |
43 throw new EventoNotFoundException(id); | 43 throw new EventoNotFoundException(id); |
44 | 44 |
45 Ponente ponente = GetPonente(ponenteNombre); | 45 Ponente ponente=null; |
46 if (!string.IsNullOrWhiteSpace(ponenteNombre)) | |
47 ponente = GetPonente(ponenteNombre); | |
46 | 48 |
47 if (evento.Titulo != titulo) | 49 if (evento.Titulo != titulo) |
48 evento.CambiarTitulo(titulo); | 50 evento.CambiarTitulo(titulo); |
49 | 51 |
50 if (evento.Fecha != fecha || evento.Ponente != ponente) | 52 if (evento.Fecha != fecha || evento.Ponente != ponente) |