Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 234:cc71f96ac134
Combinar
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 04 Oct 2011 20:36:27 -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); } }