示例#1
0
 /// <summary>
 /// Caricamento canali
 /// </summary>
 private void Fetch()
 {
     using (Publisher.Proxy.PublisherWebService ws = PublisherServiceFactory.Create())
     {
         this.grdChannels.DataSource = ws.GetAdminChannelList(this.IdAdmin);
         this.grdChannels.DataBind();
     }
 }
示例#2
0
        /// <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();
            }
        }