Habanero.Smooth.ClassAutoMapperExtensions.MustBeMapped C# (CSharp) Method

MustBeMapped() public static method

Must the Class wrapped by the typeWrapper be mapped.
public static MustBeMapped ( this typeWrapper ) : bool
typeWrapper this
return bool
        public static bool MustBeMapped(this TypeWrapper typeWrapper)
        {
            if (typeWrapper.IsNull()) return false;
            var autoMapper = new ClassAutoMapper(typeWrapper);
            return autoMapper.MustBeMapped();
        }
        /// <summary>
ClassAutoMapperExtensions