Ejemplo n.º 1
0
 public static void MapFrom(this IProcessLog target, IProcessLog source)
 {
     if (source != null)
     {
         if (target != null)
         {
             target.Date          = source.Date;
             target.ProcedureName = source.ProcedureName;
             target.Data          = source.Data;
         }
     }
 }
Ejemplo n.º 2
0
 public static void MapTo(this IProcessLog source, IProcessLog target)
 {
     target.MapFrom(source);
 }