The service describes the operations it performs in a service contract that it exposes publicly as metadata.
// Define a service contract.
[ServiceContract(Namespace="http://StackOverflow.ServiceModel.Samples")]
public interface ICalculator
{
[OperationContract]
dou...