Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Factories/NHibernateFactory.cs @ 272:33e6ee3d1776
Ticket #181: No twittear eventos pasados. Tests armado, y su corrección. Corrección de otros tests que intentaban twittear con fechas fijas.
author | juanjose.montesdeocaarbos |
---|---|
date | Fri, 18 Nov 2011 23:09:58 -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()); } } }