public interface LoanDAO
Modifier and Type | Method and Description |
---|---|
int |
countAll() |
Loan |
create(Loan loan) |
Loan[] |
findAll() |
Loan[] |
findByCardId(java.lang.String idCard) |
Loan[] |
findCurrentLoans(java.lang.String idCard) |
Loan |
getLatestLoanByItemId(int idItem) |
Loan create(Loan loan) throws InternalException
InternalException
Loan[] findByCardId(java.lang.String idCard) throws InternalException, NoClientFoundException
Loan[] findAll() throws InternalException
InternalException
Loan getLatestLoanByItemId(int idItem) throws InternalException, NoLibraryItemFoundException, NoLoanFoundException
int countAll() throws InternalException
InternalException
Loan[] findCurrentLoans(java.lang.String idCard) throws InternalException
InternalException