Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Repositories.Memory/PonenteRepository.cs @ 117:7ef7e4bb71f6
manejo de mensajes al usuario
author | Nelo@Kenia.neluz.int |
---|---|
date | Sun, 19 Jun 2011 13:35:34 -0300 |
parents | db4b1e2cae49 |
children | 2dbb15f4510f |
line wrap: on
line source
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 PersonaRepository : RepositoryBase<Persona>, IPersonaRepository { public Persona GetByNombre(string nombre) { return Objects.Values.SingleOrDefault(p => p.Nombre == nombre); } 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(); } public static void Clear() { Objects.Clear(); } } }