BeerConf.Infrastructure.NHibernate.NHibernateConfigurator.StoreConfiguration.ShouldMap C# (CSharp) Method

ShouldMap() public method

public ShouldMap ( Type type ) : bool
type System.Type
return bool
            public override bool ShouldMap(Type type)
            {
                return typeof (IEntity).IsAssignableFrom(type);
            }
NHibernateConfigurator.StoreConfiguration