view Agendas/trunk/src/Agendas.Factories/AttributeFactory.cs @ 102:92c5a12015f3

agregado de tests sobre los estados de un Evento
author jorge.rowies
date Sun, 05 Jun 2011 11:57:34 -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());
		}
	}
}