Subversion Repositories eFlore/Applications.del

Rev

Rev 312 | Rev 335 | 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;

public interface ImageService {

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

        public abstract List<Image> getImagesParTaxon(String taxon, int debut, int fin);

}