Rev 501 |
Go to most recent revision |
Details |
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.VoteProtocole;
|
|
|
6 |
|
|
|
7 |
public interface VoteProtocoleService {
|
|
|
8 |
|
|
|
9 |
public List<VoteProtocole> getVote(String idImage);
|
|
|
10 |
|
|
|
11 |
public List<VoteProtocole> getVoteByImageAndProtocol(String idImage, String protocolName);
|
|
|
12 |
|
|
|
13 |
public void saveVote(VoteProtocole voteProtocole);
|
|
|
14 |
|
|
|
15 |
}
|