Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Factories/NHibernateFactory.cs @ 208:607384590bf8
Mejorando el mensaje de error que se muestra cuando hay un error de validación del lado del servidor
author | nelopauselli |
---|---|
date | Wed, 24 Aug 2011 11:30:06 -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()); } } }