Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Factories/NHibernateFactory.cs @ 273:a7420f05716a
Ticket #185: Nombre duplicado al loguearse en el administrador de VANs. Corregido el parche.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 29 Nov 2011 07:56:23 -0300 |
parents | 1deccd6c3cb2 |
children |
line wrap: on
line source
using System; using System.Web.Mvc; using Agendas.NHibernate; namespace AltNetHispano.Agendas.Factories { public static class NHibernateFactory { public static ActionFilterAttribute GetNHibernateSessionPerAction() { return new NHibernateSessionPerActionAttribute(NhHelper.GetSessionFactory()); } public static IDisposable GetSessionScope() { return new SessionScope(NhHelper.GetSessionFactory()); } } }