package com.megatim.fdxconsultation.dao.ifaces.documents; import com.bekosoftware.genericdaolayer.dao.ifaces.GenericDAO; import com.megatim.fdxconsultation.model.documents.Category; import java.util.List; /** * * @author Gabuntu */ public interface CategoryDAO extends GenericDAO { Category getById(Long id); List loadAll(); }