public IActionResult CreateRepaymentPlan(RepaymentInput input)
        {
            var repaymentPlan = _calcRepo.CreateRepaymentPlan(input);

            return(Ok(repaymentPlan));
        }