public static IEnumerable <Tout> CopyTo <Tin, Tout>(this IEnumerable <Tin> model) where Tin : class where Tout : class
 {
     foreach (var item in model)
     {
         yield return(ExtensionMapper <Tin, Tout> .Map(item));
     }
 }
 public static Tout CopyTo <Tin, Tout>(this Tin model) where Tin : class where Tout : class
 {
     return(ExtensionMapper <Tin, Tout> .Map(model));
 }