01: package de.schlund.pfixcore.example.bank.model; 02: 03: import java.util.Collection; 04: 05: public interface BankDAO { 06: 07: public Customer getCustomerById(long id); 08: 09: public Collection<Customer> getCustomers(); 10: 11: }