Project

General

Profile

Download (368 Bytes) Statistics
| Branch: | Tag: | Revision:
1 4502ab92 a.babadshanjan
package eu.etaxonomy.cdm.persistence.dao.common;
2
3
import java.util.List;
4
5
import eu.etaxonomy.cdm.model.common.LanguageStringBase;
6
import eu.etaxonomy.cdm.model.common.Representation;
7
8
public interface IRepresentationDao extends ILanguageStringBaseDao<Representation> {
9
10
	public List<Representation> getAllRepresentations(Integer limit, Integer start);
11
12
}