using System.Collections.Generic; using WNS.GUI.NameServiceReference; namespace WNS.GUI.Logic { public class ModelServiceBinding { public IEnumerable MapServices() { WebMapService[] mapServices; using (NameServiceClient client = new NameServiceClient()) { mapServices = client.GetWebMapServices(); } return mapServices; } } }