view Agendas/trunk/src/Agendas.Factories/NHibernateFactory.cs @ 247:92c912b46307

Ticket #183: que la url del subpanel funcione en el directorio virtual
author nelopauselli
date Fri, 07 Oct 2011 12:54:56 -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());
		}
	}
}