senpost
2/17/2012 - 2:30 PM

IHelloService.cs

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

        [OperationContract]
        string HelloSoap(string message);

    }
}