Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 112:0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
author | Nelo@Kenia.neluz.int |
---|---|
date | Sat, 11 Jun 2011 01:20:59 -0300 |
parents | db4b1e2cae49 |
children | b74734a1a755 |
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> GetEventosConFecha(); IList<Evento> GetEventosSinFecha(); Evento GetPropuestaByTitulo(string titulo); void Save(Evento evento); void Update(Evento evento); } }