コード例 #1
0
 public static void Update(this CurrencyRate destination, CurrencyRate source, IMapper mapper)
 {
     mapper.Map(source, destination);
 }
コード例 #2
0
 public static CurrencyRateHistoryItem ToHistoryItem(this CurrencyRate source, IMapper mapper)
 {
     return(mapper.Map <CurrencyRateHistoryItem>(source));
 }