Rev 882 |
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
836 |
aurelien |
1 |
package org.tela_botanica.del.client.services.rest;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.del.client.modeles.VoteDetermination;
|
|
|
4 |
import org.tela_botanica.del.client.services.rest.async.VoteDeterminationCallBack;
|
|
|
5 |
|
|
|
6 |
public interface VoteDeterminationService {
|
|
|
7 |
|
|
|
8 |
void ajouterVote(VoteDetermination voteDetermination, VoteDeterminationCallBack callback);
|
|
|
9 |
public void modifierVote(VoteDetermination voteDetermination, VoteDeterminationCallBack callback);
|
|
|
10 |
|
|
|
11 |
}
|