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