public interface GenericDAO { T create() throws BussinessException; void saveOrUpdate(T entity) throws BussinessException; T get(ID id) throws BussinessException; void delete(ID id) throws BussinessException; List findAll() throws BussinessException; }