Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 231:e5959f3405e0
Eventos sin ponentes
author | nelopauselli |
---|---|
date | Wed, 28 Sep 2011 20:02:44 -0300 |
parents | a36a76bd6ec3 |
children |
line wrap: on
line source
using System; using System.Collections.Generic; namespace AltNetHispano.Agendas.Domain.Repositories { public interface IPersonaRepository { IList<Persona> GetAll(); Persona GetByNombre(string ponenteNombre); void Save(Persona persona); Cuenta GetCuenta(IdentityProviderEnum identityProvider, string username); Persona GetByTwitter(string username); Persona Get(Guid id); void Delete(Persona persona); } }