diff Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 12:05996fa19e04

Unificamos Van y Cafe en Evento Agenda.Publicar con los valores como parĂ¡metros independientes
author nelo@MTEySS.neluz.int
date Sun, 13 Mar 2011 19:50:17 -0300
parents c03560ae4762
children 08b9e96132a5
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs	Sun Mar 13 19:30:58 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs	Sun Mar 13 19:50:17 2011 -0300
@@ -7,17 +7,8 @@
 		void Save(Evento evento);
 		void Delete(Evento evento);
 		void Update(Evento evento);
-	}
-
-	public interface IVanRepository : IEventoRepository
-	{
-		Van Get(Guid vanId);
-	}
-
-	public interface ICafeRepository : IEventoRepository
-	{
-		Cafe Get(Guid vanId);
-	}
+        Evento Get(Guid vanId);
+    }
 
 	public interface IAgendaRepository
 	{