Amss.Boilerplate.Persistence.Impl.Configuration.AutomappingConfiguration.AbstractClassIsLayerSupertype C# (CSharp) Method

AbstractClassIsLayerSupertype() public method

public AbstractClassIsLayerSupertype ( Type type ) : bool
type System.Type
return bool
        public override bool AbstractClassIsLayerSupertype(Type type)
        {
            return type == typeof(IEntity) || type == typeof(BaseEntity);
        }