using System.Collections.Generic; using System.ServiceModel; using Utils; using WNS.Entities; namespace WNS.NameService { [ServiceContract] public interface INameService { [OperationContract] [CyclicReferencesAware(true)] IEnumerable GetWebMapServices(); } }