Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Repositories.Memory/PonenteRepository.cs @ 94:db4b1e2cae49
Cambio del nombre de la clase Ponente a Persona
Se agrega la clase Cuenta para identificar cada una de las cuentas con que se puede autenticar una persona
Alta Automatica de cuentas de twitter creando la persona
author | Nelo@Kenia.neluz.int |
---|---|
date | Sat, 04 Jun 2011 12:11:17 -0300 |
parents | 65bbcdd5d357 |
children | 2dbb15f4510f |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Repositories.Memory/PonenteRepository.cs Sat Jun 04 00:07:20 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Repositories.Memory/PonenteRepository.cs Sat Jun 04 12:11:17 2011 -0300 @@ -1,18 +1,27 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; using System.Linq; using AltNetHispano.Agendas.Domain; using AltNetHispano.Agendas.Domain.Repositories; namespace AltNetHispano.Agendas.Repositories.Memory { - public class PonenteRepository : RepositoryBase<Ponente>, IPonenteRepository + public class PersonaRepository : RepositoryBase<Persona>, IPersonaRepository { - public Ponente GetByNombre(string nombre) + public Persona GetByNombre(string nombre) { return Objects.Values.SingleOrDefault(p => p.Nombre == nombre); } - public IList<Ponente> GetAll() + public Cuenta GetCuenta(IdentityProviderEnum identityProvider, string username) + { + var cuentas = from p in Objects.Values + select p.Cuentas.SingleOrDefault(c => c.IdentityProvider == identityProvider && c.LogonName == username); + + return cuentas.Where(c => c != null).SingleOrDefault(); + } + + public IList<Persona> GetAll() { return Objects.Values.ToList(); }