diff 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
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs	Tue Mar 15 06:57:58 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs	Tue Mar 15 07:49:53 2011 -0300
@@ -13,11 +13,10 @@
 		IList<Evento> GetEventosConFecha();
 	}
 
-	public interface IAgendaRepository
+	public interface IPonenteRepository
 	{
-		void Save(Agenda agenda);
-		void Delete(Agenda agenda);
-		void Update(Agenda agenda);
-		Agenda Get(Guid agendaId);
+		void Save(Ponente ponente);
+		Ponente GetByNombre(string ponenteNombre);
+		IList<Ponente> GetAll();
 	}
 }
\ No newline at end of file