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