view Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 50:3ebe89c88caa

Agregando propiedad al Evento sobre el Usuario que lo crea o que realizó la última modificación.
author nelopauselli
date Fri, 13 May 2011 23:29: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();
	}
}