view Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 209:a36a76bd6ec3

Se soluciona ticket 173. Se agrega eliminación de personas siempre y cuando no esté asociada a ninguna van.
author alabra
date Wed, 24 Aug 2011 19:27:30 -0300
parents b74734a1a755
children 7d838e7d83b3
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> GetByState(EventoState state);
		IList<Evento> GetActivos();
		Evento GetPropuestaByTitulo(string titulo);
		void Save(Evento evento);
		void Update(Evento evento);
	    bool ExistePonente(Persona ponente);
	}
}