105 public Loan(Long
id, Long lender, Long borrower, Long item, Date loanDate, Date estimatedReturnDate, Date realReturnDate,
Status loanStatus, Double rating, String observations) {
107 this.lender = lender;
108 this.borrower = borrower;
110 this.loanDate = loanDate;
111 this.estimatedReturnDate = estimatedReturnDate;
112 this.realReturnDate = realReturnDate;
113 this.loanStatus = loanStatus;
114 this.rating = rating;
115 this.observations = observations;