Example #1
0
 public JsonResult ExchangeRateDailyAverage(string start_date, string end_date, string currency)
 {
     object result = _service.ExchangeRateDailyAverage(start_date, end_date, currency);
     return Json(result);
 }