Customer customer = new Customer();
customer.setName("Jacob");
customer = linkController.addCustomer(customer);
Loan loan = new Loan();
loan.setBook(book);
loan.setCustomer(customer);
loan = linkController.addLoan(loan);
Book bookTest = linkController.getBook(book.getBookId());
List<Loan> associatedLoans = bookTest.getLoans();