Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 220:42a1068e73c8
corrección en subpanels para respetar (un poco mas) html según la w3c
author | nelopauselli |
---|---|
date | Fri, 09 Sep 2011 11:26:17 -0300 |
parents | 7d838e7d83b3 |
children | 68b09c30b0d2 |
line wrap: on
line source
using System; using System.Collections.Generic; namespace AltNetHispano.Agendas.Domain.Repositories { public interface IEventoRepository { void Delete(Evento evento); Evento Get(Guid vanId); IList<Evento> GetByState(EventoState state); IList<Evento> GetActivos(); Evento GetPropuestaByTitulo(string titulo); Evento GetNoPropuestoByTitulo(string titulo); void Save(Evento evento); void Update(Evento evento); bool ExistePonente(Persona ponente); } }