Ejemplo n.º 1
0
 public static TTarget Map<TTarget>(object source) where TTarget : class, new() => Mapper.Map<TTarget>(source);
Ejemplo n.º 2
0
 public static IEnumerable<TTarget> Map<TTarget>(object[] source) where TTarget : class, new() => Mapper.Map<TTarget>(source);
Ejemplo n.º 3
0
 public static void Bind<TSource, TTarget>() where TTarget : class, new() => Mapper.Bind<TSource, TTarget>();