Esempio n. 1
0
 /// <summary>
 /// Executes the after map.
 /// </summary>
 /// <param name="source">The source.</param>
 /// <param name="target">The target.</param>
 protected void ExecuteAfterMap(TSource source, TTarget target)
 {
     if (MappingContext.AfterMapAction != null)
     {
         MappingContext.AfterMapAction(source, target);
     }
 }