Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Domain/IdentityContext.cs @ 112:0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
author | Nelo@Kenia.neluz.int |
---|---|
date | Sat, 11 Jun 2011 01:20:59 -0300 |
parents | db4b1e2cae49 |
children | 7a2eeb9e9bf9 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/IdentityContext.cs Wed Jun 08 08:40:04 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Domain/IdentityContext.cs Sat Jun 11 01:20:59 2011 -0300 @@ -35,7 +35,9 @@ public static Persona GetUsuario() { - var cuenta = _personaRepository.GetCuenta(IdentityProviderEnum.Twitter, GetUserName()); + var identification = new Identification(GetUserName()); + + var cuenta = _personaRepository.GetCuenta(identification.IdentityProvider, identification.LogonName); return cuenta != null ? cuenta.Persona : null; } }