comparison Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 143:2dbb15f4510f

Asociar Twitter a Persona existente
author Nelo@Guinea.neluz.int
date Mon, 01 Aug 2011 09:41:29 -0300
parents db4b1e2cae49
children a2b14da4902f
comparison
equal deleted inserted replaced
142:62dc9fb3a03e 143:2dbb15f4510f
6 { 6 {
7 IList<Persona> GetAll(); 7 IList<Persona> GetAll();
8 Persona GetByNombre(string ponenteNombre); 8 Persona GetByNombre(string ponenteNombre);
9 void Save(Persona persona); 9 void Save(Persona persona);
10 Cuenta GetCuenta(IdentityProviderEnum identityProvider, string username); 10 Cuenta GetCuenta(IdentityProviderEnum identityProvider, string username);
11 Persona GetByTwitter(string username);
11 } 12 }
12 } 13 }