view Agendas/trunk/src/Agendas.Factories/AttributeFactory.cs @ 92:7027cda13de3

Armado de la url de retorno en base a la url del request
author Nelo@Kenia.neluz.int
date Fri, 03 Jun 2011 23:58:03 -0300
parents c8099df941bd
children
line wrap: on
line source

using System.Web.Mvc;
using Agendas.NHibernate;

namespace AltNetHispano.Agendas.Factories
{
	public class AttributeFactory
	{
		public static ActionFilterAttribute GetNHibernateSessionPerAction()
		{
			return new NHibernateSessionPerActionAttribute(NhHelper.GetSessionFactory());
		}
	}
}