1 package civitas.common.electionresults;
2
3 import org.springframework.stereotype.Controller;
4
5 @Controller
6 public class GetComputerForTeller {
7
8 public String apply(final int tellerIndex) {
9 return "Teller" + tellerIndex;
10 }
11 }