1: package org.araneaframework.example.main.business.data; 2: 3: import java.io.Serializable; 4: 5: public interface IContractDAO extends Serializable { 6: void removeByPersonId(Long personId); 7: 8: void removeByCompanyId(Long companyId); 9: }