예제 #1
0
파일: Adapter.cs 프로젝트: Ager1912/Mapster
 public TDestination Adapt <TSource, TDestination>(TSource source, TDestination destination)
 {
     return(TypeAdapter.Adapt(source, destination));
 }
예제 #2
0
파일: Adapter.cs 프로젝트: Ager1912/Mapster
 public object Adapt(object source, object destination, Type sourceType, Type destinationType)
 {
     return(TypeAdapter.Adapt(source, destination, sourceType, destinationType));
 }
예제 #3
0
파일: Adapter.cs 프로젝트: Ager1912/Mapster
 public TDestination Adapt <TDestination>(object source)
 {
     return(TypeAdapter.Adapt <TDestination>(source));
 }