view Agendas/trunk/src/Agendas.Factories/NHibernateFactory.cs @ 243:59f8fa2f835e

Ticket 177: Valor de Duración de VAN en 0.
author juanjose.montesdeocaarbos
date Thu, 06 Oct 2011 08:13: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());
		}
	}
}