Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 257:730b80afa70d
Ticket #191: Perfil de Usuarios
author | juanjose.montesdeocaarbos |
---|---|
date | Wed, 19 Oct 2011 09:19:20 -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); } }