Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Factories/NHibernateFactory.cs @ 179:1deccd6c3cb2
Aplicando seguridad x roles en sitio web
author | nelopauselli |
---|---|
date | Mon, 08 Aug 2011 15:24:26 -0300 |
parents | Agendas/trunk/src/Agendas.Factories/AttributeFactory.cs@c8099df941bd |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Agendas/trunk/src/Agendas.Factories/NHibernateFactory.cs Mon Aug 08 15:24:26 2011 -0300 @@ -0,0 +1,19 @@ +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()); + } + } +} \ No newline at end of file