Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 273:a7420f05716a
Ticket #185: Nombre duplicado al loguearse en el administrador de VANs. Corregido el parche.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 29 Nov 2011 07:56:23 -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); } }