public List<OnlyRateModel> Get()
        {
            OnlyRateBinder binder = new OnlyRateBinder();
            var res = binder.BindData();

            return res;
        }
Beispiel #2
0
 public ActionResult _CurrencyList()
 {
     OnlyRateBinder binder = new OnlyRateBinder();
     var res = binder.BindData();
     return PartialView(res);
 }