comparison 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
comparison
equal deleted inserted replaced
117:7ef7e4bb71f6 118:b74734a1a755
5 { 5 {
6 public interface IEventoRepository 6 public interface IEventoRepository
7 { 7 {
8 void Delete(Evento evento); 8 void Delete(Evento evento);
9 Evento Get(Guid vanId); 9 Evento Get(Guid vanId);
10 IList<Evento> GetEventosConFecha(); 10 IList<Evento> GetByState(EventoState state);
11 IList<Evento> GetEventosSinFecha(); 11 IList<Evento> GetActivos();
12 Evento GetPropuestaByTitulo(string titulo); 12 Evento GetPropuestaByTitulo(string titulo);
13 void Save(Evento evento); 13 void Save(Evento evento);
14 void Update(Evento evento); 14 void Update(Evento evento);
15 } 15 }
16 } 16 }