Exemple #1
0
        public static List <TOut> MapperTo <TIn, TOut>(this List <TIn> objs)
        {
            List <TOut> outs = ExpressionGenericMapper <TIn, TOut> .MapperTo(objs);

            return(outs);
        }
Exemple #2
0
        public static TOut MapperTo <TIn, TOut>(this TIn obj)
        {
            TOut res = ExpressionGenericMapper <TIn, TOut> .MapperTo(obj);

            return(res);
        }