comparison Agendas/trunk/src/Agendas.Domain/Agenda.cs @ 119:8fa58a79656a

Historico
author Nelo@Kenia.neluz.int
date Wed, 22 Jun 2011 09:49:07 -0300
parents b74734a1a755
children 1e47bf408073 6f1041301797
comparison
equal deleted inserted replaced
118:b74734a1a755 119:8fa58a79656a
33 } 33 }
34 34
35 public IList<Evento> GetEventosActivos() 35 public IList<Evento> GetEventosActivos()
36 { 36 {
37 return _eventosRepository.GetActivos() ?? new List<Evento>(); 37 return _eventosRepository.GetActivos() ?? new List<Evento>();
38 }
39
40 public IEnumerable<Evento> GetHistorico()
41 {
42 return _eventosRepository.GetByState(EventoPublicadoState.GetInstance()) ?? new List<Evento>();
38 } 43 }
39 44
40 public Resultado ModificarEvento(Guid eventoId, string titulo, string ponenteNombre, DateTime? fecha, string urlInvitacion) 45 public Resultado ModificarEvento(Guid eventoId, string titulo, string ponenteNombre, DateTime? fecha, string urlInvitacion)
41 { 46 {
42 Evento evento = GetEvento(eventoId); 47 Evento evento = GetEvento(eventoId);