Пример #1
0
        public ActionResult ViewLoanInterest(string id)
        {
            int interestId = DecryptQueryString(id);

            if (interestId <= 0)
            {
                return(RedirectToAction("LoanInterestLookup"));
            }

            var loanInterestViewDto = _interestService.GetLoanViewByID(interestId);

            return(View(loanInterestViewDto));
        }