Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Factories/NHibernateFactory.cs @ 294:0e616662a94b
Added tag v1.1.0 for changeset 2cf7143586fe
author | nelopauselli |
---|---|
date | Fri, 17 Feb 2012 14:28:05 -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()); } } }