public interface FineDAO
| Modifier and Type | Method and Description |
|---|---|
void |
create(Fine fine) |
void |
delete(Fine fine) |
Fine[] |
findByClient(Client client) |
void |
pay(Fine fine) |
void create(Fine fine) throws InternalException, NoReturnFoundException, InvalidFineTypeException
Fine[] findByClient(Client client) throws InternalException, NoClientFoundException
void pay(Fine fine) throws InternalException
InternalExceptionvoid delete(Fine fine) throws InternalException
InternalException