package com.megatim.fdxconsultation.dao.ifaces.searchs; import com.megatim.fdxcommons.model.referentiel.Participant; import com.megatim.fdxconsultation.model.searchentities.ParticipantSearch; import java.util.List; /** * * @author Gabuntu */ public interface UserParticipantDAO { List findUserParticipantsWithPagination(String userName, ParticipantSearch participantSearch, int pageNumber, int pageSize); List findAllUserParticipants(String userName, ParticipantSearch participantSearch); List findUserParticipants(String userName); Long countUserParticipants(String userName, ParticipantSearch participantSearch); }