Amss.Boilerplate.Persistence.Impl.Configuration.AutomappingConfiguration.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);
        }