Rev 359 | 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.HashMap;
import java.util.List;
import org.tela_botanica.del.client.modeles.Observation;
public interface ObservationService {
public List<Observation> getObservations(HashMap<String, String> champsRecherche);
public List<Observation> getObservations();
}