view Agendas/trunk/src/Agendas.Factories/NHibernateFactory.cs @ 191:03c237cd5cc4

Test que verifica el acceso por shorten url
author nelopauselli
date Tue, 09 Aug 2011 09:52:02 -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());
		}
	}
}