Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 41:07c47ea2ac00
movimos el AddTrack a cada acción dentro de Evento
author | nelopauselli |
---|---|
date | Fri, 18 Mar 2011 12:15:48 -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(); } }