Exemple #1
0
 public static void CopyMatchingOnly <TSource, TTarget>(TSource source, TTarget target)
     where TSource : class
     where TTarget : class
 {
     PropertyCopier <TSource, TTarget> .CopyMatching(source, target);
 }
Exemple #2
0
 public static void CopyFull <TSource, TTarget>(TSource source, TTarget target)
     where TSource : class
     where TTarget : class
 {
     PropertyCopier <TSource, TTarget> .CopyFull(source, target);
 }