diff 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
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs	Sat May 14 12:45:50 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs	Sat May 14 13:01:24 2011 -0300
@@ -5,19 +5,19 @@
 {
 	public interface IEventoRepository
 	{
+		void Delete(Evento evento);
+		Evento Get(Guid vanId);
+		IList<Evento> GetEventosConFecha();
+		IList<Evento> GetEventosSinFecha();
+		Evento GetPropuestaByTitulo(string titulo);
 		void Save(Evento evento);
-		void Delete(Evento evento);
 		void Update(Evento evento);
-        Evento Get(Guid vanId);
-		IList<Evento> GetEventosSinFecha();
-		IList<Evento> GetEventosConFecha();
-		Evento GetPropuestaByTitulo(string titulo);
 	}
 
 	public interface IPonenteRepository
 	{
-		void Save(Ponente ponente);
+		IList<Ponente> GetAll();
 		Ponente GetByNombre(string ponenteNombre);
-		IList<Ponente> GetAll();
+		void Save(Ponente ponente);
 	}
 }
\ No newline at end of file