Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 34:475be11edf56
Ajuste en los nombre de los assemblies y namespaces
author | nelo@MTEySS.neluz.int |
---|---|
date | Thu, 17 Mar 2011 16:59:29 -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(); } }