Subversion Repositories eFlore/Applications.del

Rev

Rev 312 | Rev 335 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
283 benjamin 1
package org.tela_botanica.del.client.services.rest;
2
 
3
import java.util.List;
4
 
5
import org.tela_botanica.del.client.modeles.Image;
6
 
7
public interface ImageService {
8
 
9
	public abstract List<Image> getImagesEfloreParTaxon(String nomTaxon);
10
 
312 gduche 11
	public abstract List<Image> getImagesParTaxon(String taxon, int debut, int fin);
283 benjamin 12
 
13
}