示例#1
0
        public JsonResult CalculateCurrency(int input, string from, string to)
        {
            double currency = ConversionService.GetCurrency(input, from, to);

            return(Json(currency, JsonRequestBehavior.AllowGet));
        }