public async Task<Dictionary<string, string>> Lookup(string[] channelNames, ChannelType channelType = ChannelType.Tv, string regionCode = NO_REGION)
 {
   ChannelManagerClient client = new ChannelManagerClient(new BasicHttpBinding(), new EndpointAddress(string.Format("{0}ChannelManager.svc", RepositoryUrl)));
   return await client.GetLogosAsync(channelNames, channelType, regionCode);
 }
        public async Task <Dictionary <string, string> > Lookup(string[] channelNames, ChannelType channelType = ChannelType.Tv, string regionCode = NO_REGION)
        {
            ChannelManagerClient client = new ChannelManagerClient(new BasicHttpBinding(), new EndpointAddress(string.Format("{0}ChannelManager.svc", RepositoryUrl)));

            return(await client.GetLogosAsync(channelNames, channelType, regionCode));
        }