Esempio n. 1
0
 public static decimal ConvertFromUSD(this decimal?value, Enums.PrintingEditions.Currency currency)
 {
     value = value * Constants.ExchangeRates.fromUSD[currency];
     return(value.GetValueOrDefault());
 }
Esempio n. 2
0
 public static decimal ConvertToUSD(this decimal value, Enums.PrintingEditions.Currency currency)
 {
     value = value * Constants.ExchangeRates.toUSD[currency];
     return(value);
 }