Habanero.Smooth.InheritanceAutoMapperExtensions.MapInheritance C# (CSharp) Method

MapInheritance() public static method

Maps any Inhertiance Relationships for the type. and returns the ISuperClassDef that is used to map these in Habanero.
public static MapInheritance ( this type ) : ISuperClassDef
type this
return ISuperClassDef
        public static ISuperClassDef MapInheritance(this Type type)
        {
            return type == null ? null : type.ToTypeWrapper().MapInheritance();
        }
        /// <summary>
InheritanceAutoMapperExtensions