view 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 source

using System;
using System.Collections.Generic;

namespace AltNetHispano.Agendas.Domain.Repositories
{
	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 Update(Evento evento);
	}

	public interface IPonenteRepository
	{
		IList<Ponente> GetAll();
		Ponente GetByNombre(string ponenteNombre);
		void Save(Ponente ponente);
	}
}