view Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 36:65bbf1ab2b24

cuando se modifica un evento, también debe ser publicada dicha modificación
author nelo@MTEySS.neluz.int
date Thu, 17 Mar 2011 17:03:05 -0300
parents 016b9b9b8d3a
children 3059a5f8930f
line wrap: on
line source

using System;
using System.Collections.Generic;

namespace AltNetHispano.Agendas.Domain.Repositories
{
	public interface IEventoRepository
	{
		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);
		Ponente GetByNombre(string ponenteNombre);
		IList<Ponente> GetAll();
	}
}