comparison Agendas/trunk/src/Agendas.Domain/Agenda.cs @ 18:8ed4a806ebe0

corrección de excepeción lanzada si no hay usuario autenticado al proponer un evento
author nelo@MTEySS.neluz.int
date Mon, 14 Mar 2011 00:26:44 -0300
parents ed29ceb025a9
children 43360bf09b1a
comparison
equal deleted inserted replaced
17:9a07d3091a40 18:8ed4a806ebe0
47 public void Proponer(Evento evento) 47 public void Proponer(Evento evento)
48 { 48 {
49 if (string.IsNullOrWhiteSpace(evento.Titulo)) 49 if (string.IsNullOrWhiteSpace(evento.Titulo))
50 throw new ValidationException(); 50 throw new ValidationException();
51 if (NoEstaAutenticado(_seguridad)) 51 if (NoEstaAutenticado(_seguridad))
52 throw new ValidationException(); 52 throw new UsuarioNoAutenticadoException();
53 _eventosRepository.Save(evento); 53 _eventosRepository.Save(evento);
54 } 54 }
55 55
56 public IList<Evento> GetEventosPropuestos() 56 public IList<Evento> GetEventosPropuestos()
57 { 57 {