view Agendas/trunk/src/Agendas.Factories/AttributeFactory.cs @ 107:1ee5711256db

Utilizando Twitterizer en adapter a Twitter
author Nelo@Kenia.neluz.int
date Tue, 07 Jun 2011 21:03:56 -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());
		}
	}
}