/// <inheritdoc /> public Currency GetCurrentCurrency() { var currency = HttpContext.Current.Session["Currency"] as Currency; if (currency == null) { currency = currencyProvider.GetDefaultCurrency(); } return(currency); }