internal static string CurrencyName(this RealExCurrency realExCurrency)
 {
     return(Enum.GetName(typeof(RealExCurrency), realExCurrency));
 }
Exemple #2
0
 public Amount(decimal value, RealExCurrency currency)
 {
     Value    = value * 100;
     Currency = currency;
 }