Bosphorus.Dao.Common.Mapper.Default.ValueInjectorFlattenMapper.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 = targetType.Name.EndsWith("Dto");
            return result;
        }