Atomia.Web.Plugin.PublicOrder.Helpers.ResellerHelper.GetResellerCurrencyCode C# (CSharp) Метод

GetResellerCurrencyCode() публичный статический Метод

Gets the reseller currency code.
public static GetResellerCurrencyCode ( ) : string
Результат string
        public static string GetResellerCurrencyCode()
        {
            if (HttpContext.Current.Session["resellerAccountData"] != null)
            {
                return ((AccountData)HttpContext.Current.Session["resellerAccountData"]).DefaultCurrencyCode;
            }

            throw new ApplicationException("Reseller not found.");
        }