Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.NHibernate/EventoStateType.cs @ 247:92c912b46307
Ticket #183: que la url del subpanel funcione en el directorio virtual
author | nelopauselli |
---|---|
date | Fri, 07 Oct 2011 12:54:56 -0300 |
parents | 68b09c30b0d2 |
children |
line wrap: on
line source
using AltNetHispano.Agendas.Domain; using AltNetHispano.Agendas.Domain.Repositories; using NHibernate.SqlTypes; namespace Agendas.NHibernate { public class EventoStateType : GenericWellKnownInstanceType<EventoState, string> { public EventoStateType() : base(EventoStateRepository.All, (state, id) => state.Descripcion == id, state => state.Descripcion) { } public override SqlType[] SqlTypes { get { return new[] {SqlTypeFactory.GetString(25)}; } } } }