Subversion Repositories eFlore/Applications.del

Rev

Rev 326 | Rev 346 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package org.tela_botanica.del.client.services.rest;

import java.util.List;

import org.tela_botanica.del.client.modeles.Image;
import org.tela_botanica.del.client.modeles.InformationsRecherche;

public interface ImageService {

        public abstract List<Image> getImagesEfloreParTaxon(String nomTaxon);

        public abstract List<Image> getImagesParTaxon(InformationsRecherche informationsRecherche, int debut, int fin);

}