@WebMethod(operationName = "times") public int times(int x, int y) throws NegativeNumberException { return positiveCalculatorService.times(x, y); }
@WebMethod(operationName = "add") public int add(int x, int y) throws NegativeNumberException { return positiveCalculatorService.add(x, y); }