comparison Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 24:41b283d27e3e

Ponentes como entidad Agenda no es una entidad persistente (por ahora)
author nelo@MTEySS.neluz.int
date Tue, 15 Mar 2011 07:49:53 -0300
parents 08b9e96132a5
children 016b9b9b8d3a
comparison
equal deleted inserted replaced
23:a85674a7aa7a 24:41b283d27e3e
11 Evento Get(Guid vanId); 11 Evento Get(Guid vanId);
12 IList<Evento> GetEventosSinFecha(); 12 IList<Evento> GetEventosSinFecha();
13 IList<Evento> GetEventosConFecha(); 13 IList<Evento> GetEventosConFecha();
14 } 14 }
15 15
16 public interface IAgendaRepository 16 public interface IPonenteRepository
17 { 17 {
18 void Save(Agenda agenda); 18 void Save(Ponente ponente);
19 void Delete(Agenda agenda); 19 Ponente GetByNombre(string ponenteNombre);
20 void Update(Agenda agenda); 20 IList<Ponente> GetAll();
21 Agenda Get(Guid agendaId);
22 } 21 }
23 } 22 }