Example #1
0
        public ActionResult Cashflow(Loan loan)
        {
            List <MonthDetail> detail = Calculator.CalculateFixedRateCashflow(loan);

            return(View(detail));
        }
Example #2
0
        public ActionResult PoolCashflow()
        {
            List <MonthDetail> detail = Calculator.CalculateFixedRateCashflow(db.Loans.ToList());

            return(View("Cashflow", detail));
        }