using System; using System.ServiceModel; namespace TestServiceInterface { [ServiceContract] public interface ImyService { [OperationContract] string GetData(int value); } }