/// <summary> /// Caricamento canali /// </summary> private void Fetch() { using (Publisher.Proxy.PublisherWebService ws = PublisherServiceFactory.Create()) { this.grdChannels.DataSource = ws.GetAdminChannelList(this.IdAdmin); this.grdChannels.DataBind(); } }
/// <summary> /// /// </summary> private void Fetch() { using (Publisher.Proxy.PublisherWebService ws = new Publisher.Proxy.PublisherWebService()) { ws.Url = Properties.Settings.Default.PublisherWebServices; this.grdInstances.DataSource = ws.GetAdminChannelList(this.IdAdmin); this.grdInstances.DataBind(); } }