示例#1
0
        // GET: ReportController/Create
        public ActionResult Create()
        {
            var report = new ReportModel
            {
                Currencies = _currencybusiness.GetAllCurrenciesAsync()
            };

            return(View(report));
        }
示例#2
0
        public ActionResult Currencies()
        {
            var currencieslist = _currencybusiness.GetAllCurrenciesAsync();

            return(View(currencieslist));
        }