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

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

            var depositInterestViewDto = _interestService.GetViewByID(interestId);

            return(View(depositInterestViewDto));
        }