* @return the CreditReport for the given loan request
*/
public CreditReport getCreditReport(LoanRequest loanRequest) {
int creditScore = 600 + new Random().nextInt(250);
logger.info("Credit Score: " + creditScore);
return new CreditReport(creditScore);
}