public IActionResult Get()
        {
            IEnumerable <Loan> loan = loanManager.GetAll();

            return(Ok(loan));
        }