Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 54:3059a5f8930f
Code cleanup
author | nelopauselli |
---|---|
date | Sat, 14 May 2011 13:01:24 -0300 |
parents | 016b9b9b8d3a |
children | db4b1e2cae49 |
comparison
equal
deleted
inserted
replaced
53:d149bfea3892 | 54:3059a5f8930f |
---|---|
3 | 3 |
4 namespace AltNetHispano.Agendas.Domain.Repositories | 4 namespace AltNetHispano.Agendas.Domain.Repositories |
5 { | 5 { |
6 public interface IEventoRepository | 6 public interface IEventoRepository |
7 { | 7 { |
8 void Delete(Evento evento); | |
9 Evento Get(Guid vanId); | |
10 IList<Evento> GetEventosConFecha(); | |
11 IList<Evento> GetEventosSinFecha(); | |
12 Evento GetPropuestaByTitulo(string titulo); | |
8 void Save(Evento evento); | 13 void Save(Evento evento); |
9 void Delete(Evento evento); | |
10 void Update(Evento evento); | 14 void Update(Evento evento); |
11 Evento Get(Guid vanId); | |
12 IList<Evento> GetEventosSinFecha(); | |
13 IList<Evento> GetEventosConFecha(); | |
14 Evento GetPropuestaByTitulo(string titulo); | |
15 } | 15 } |
16 | 16 |
17 public interface IPonenteRepository | 17 public interface IPonenteRepository |
18 { | 18 { |
19 IList<Ponente> GetAll(); | |
20 Ponente GetByNombre(string ponenteNombre); | |
19 void Save(Ponente ponente); | 21 void Save(Ponente ponente); |
20 Ponente GetByNombre(string ponenteNombre); | |
21 IList<Ponente> GetAll(); | |
22 } | 22 } |
23 } | 23 } |