public ActionResult ShowCurrency()
 {
     XMLMethods xml = new XMLMethods();
     Dictionary<string, string> currency = xml.GetCurrencies();
     return PartialView("_Currency", currency);
 }