Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 26:71b02443450a
UI de Propuestas de VANs
author | nelo@MTEySS.neluz.int |
---|---|
date | Tue, 15 Mar 2011 08:45:00 -0300 |
parents | 41b283d27e3e |
children | 016b9b9b8d3a |
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(); } public interface IPonenteRepository { void Save(Ponente ponente); Ponente GetByNombre(string ponenteNombre); IList<Ponente> GetAll(); } }