Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 144:a2b14da4902f
Alta y modificación de ponentes (personas)
author | Nelo@Guinea.neluz.int |
---|---|
date | Mon, 01 Aug 2011 10:25:23 -0300 |
parents | 2dbb15f4510f |
children | a36a76bd6ec3 |
comparison
equal
deleted
inserted
replaced
143:2dbb15f4510f | 144:a2b14da4902f |
---|---|
1 using System.Collections.Generic; | 1 using System; |
2 using System.Collections.Generic; | |
2 | 3 |
3 namespace AltNetHispano.Agendas.Domain.Repositories | 4 namespace AltNetHispano.Agendas.Domain.Repositories |
4 { | 5 { |
5 public interface IPersonaRepository | 6 public interface IPersonaRepository |
6 { | 7 { |
7 IList<Persona> GetAll(); | 8 IList<Persona> GetAll(); |
8 Persona GetByNombre(string ponenteNombre); | 9 Persona GetByNombre(string ponenteNombre); |
9 void Save(Persona persona); | 10 void Save(Persona persona); |
10 Cuenta GetCuenta(IdentityProviderEnum identityProvider, string username); | 11 Cuenta GetCuenta(IdentityProviderEnum identityProvider, string username); |
11 Persona GetByTwitter(string username); | 12 Persona GetByTwitter(string username); |
13 Persona Get(Guid id); | |
12 } | 14 } |
13 } | 15 } |