Bosphorus.Dao.Common.Mapper.Default.EnumerableMapper.IsApplicable C# (CSharp) Method

IsApplicable() public method

public IsApplicable ( Type sourceType, Type targetType ) : bool
sourceType System.Type
targetType System.Type
return bool
        public bool IsApplicable(Type sourceType, Type targetType)
        {
            bool result = enumerableType.IsAssignableFrom(sourceType);
            return result;
        }