Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 118:b74734a1a755
Manejo de eventos por estado
author | Nelo@Kenia.neluz.int |
---|---|
date | Wed, 22 Jun 2011 09:32:59 -0300 |
parents | db4b1e2cae49 |
children | a36a76bd6ec3 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs Sun Jun 19 13:35:34 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs Wed Jun 22 09:32:59 2011 -0300 @@ -7,8 +7,8 @@ { void Delete(Evento evento); Evento Get(Guid vanId); - IList<Evento> GetEventosConFecha(); - IList<Evento> GetEventosSinFecha(); + IList<Evento> GetByState(EventoState state); + IList<Evento> GetActivos(); Evento GetPropuestaByTitulo(string titulo); void Save(Evento evento); void Update(Evento evento);