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

            return(View(report));
        }
        public ActionResult Currencies()
        {
            var currencieslist = _currencybusiness.GetAllCurrenciesAsync();

            return(View(currencieslist));
        }