Rev 283 | Rev 392 | 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.InformationsRecherche;
import org.tela_botanica.del.client.modeles.Observation;
public interface ObservationService {
public List<Observation> getObservations(InformationsRecherche informationsRecherche);
public List<Observation> getObservations();
}