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