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