ArenMg/src/main/java/fr/mieuxvoter/mj/TallyInterface.java

13 lines
241 B
Java

package fr.mieuxvoter.mj;
import java.math.BigInteger;
public interface TallyInterface {
public ProposalTallyInterface[] getProposalsTallies();
public BigInteger getAmountOfJudges();
public Integer getAmountOfProposals();
}