diff --git a/Libraries/Core/Helpers/PaymentHelper.cs b/Libraries/Core/Helpers/PaymentHelper.cs index ab121852..33ea966c 100644 --- a/Libraries/Core/Helpers/PaymentHelper.cs +++ b/Libraries/Core/Helpers/PaymentHelper.cs @@ -36,6 +36,13 @@ public class PaymentHelper(ConfigServer _configServer) /// public string GetCurrency(string currency) { - throw new NotImplementedException(); + return currency switch + { + "EUR" => Money.EUROS, + "USD" => Money.DOLLARS, + "RUB" => Money.ROUBLES, + "GP" => Money.GP, + _ => "" + }; } }