1 package civitas.common.electionresults;
2
3 import org.springframework.beans.factory.annotation.Autowired;
4 import org.springframework.stereotype.Controller;
5
6 import civitas.common.CommonConstants;
7
8 @Controller
9 public class GetMetaForTeller implements CommonConstants {
10 @Autowired
11 GetComputerForTeller getComputerForTeller;
12
13 public String appply(final int tellerIndex) {
14 return ELECTION_RESULTS_META + getComputerForTeller.apply(tellerIndex);
15 }
16 }