Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Repositories.NHibernate/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 | 963b71ea6028 |
children | 2dbb15f4510f |
line wrap: on
line source
using System; using System.Collections.Generic; using AltNetHispano.Agendas.Domain; using AltNetHispano.Agendas.Domain.Repositories; using NHibernate; namespace AltNetHispano.Agendas.Repositories.NHibernate { public class PersonaRepository : RepositoryBase<Persona>, IPersonaRepository { public PersonaRepository(ISessionFactory sessionFactory) : base(sessionFactory) { } public IList<Persona> GetAll() { return Session.QueryOver<Persona>().List(); } public Persona GetByNombre(string ponenteNombre) { return Session.QueryOver<Persona>().Where(p => p.Nombre == ponenteNombre).SingleOrDefault(); } public Cuenta GetCuenta(IdentityProviderEnum identityProvider, string username) { return Session.QueryOver<Cuenta>().Where(c => c.IdentityProvider == identityProvider && c.LogonName == username). SingleOrDefault(); } } }