comparison 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
comparison
equal deleted inserted replaced
81:c76661cff260 82:c8897b1c6f49
37 public IList<Evento> GetEventosAgendados() 37 public IList<Evento> GetEventosAgendados()
38 { 38 {
39 return _eventosRepository.GetEventosConFecha() ?? new List<Evento>(); 39 return _eventosRepository.GetEventosConFecha() ?? new List<Evento>();
40 } 40 }
41 41
42 public Resultado ModificarEvento(Guid id, string titulo, string ponenteNombre, DateTime? fecha, string urlInvitacion) 42 public Resultado ModificarEvento(Guid eventoId, string titulo, string ponenteNombre, DateTime? fecha, string urlInvitacion)
43 { 43 {
44 Evento evento = GetEvento(id); 44 Evento evento = GetEvento(eventoId);
45 45
46 Ponente ponente = null; 46 Ponente ponente = null;
47 if (!string.IsNullOrWhiteSpace(ponenteNombre)) 47 if (!string.IsNullOrWhiteSpace(ponenteNombre))
48 ponente = GetPonente(ponenteNombre); 48 ponente = GetPonente(ponenteNombre);
49 49