namespace SoapAndRestService { [ServiceContract] public interface IHelloService { [OperationContract] string HelloRest(string message); [OperationContract] string HelloSoap(string message); } }