' NOTE: If you change the class name "Calculator" here, you must also update the reference to "Calculator" in Web.config and in the associated .svc file. Public Class Calculator Implements ICalculator Public Function Add(ByVal a As Integer, ByVal b As Integer) As Integer Implements ICalculator.Add Return a + b End Function End Class