Esempio n. 1
0
 public List <TVProgramme> GetTVProgrammes(List <EPGRequest> EPGrequests, bool omitDescriptions, CommonEPG.TVProgrammeType matchType)
 {
     return(storeManager.GetTVProgrammesUsingEPGRequests(EPGrequests, omitDescriptions, matchType));
 }
Esempio n. 2
0
        public List <TVProgramme> GetTVProgrammes(DateRange dateRange, string[] channelIds, bool omitDescriptions, CommonEPG.TVProgrammeType matchType)
        {
            List <EPGRequest> requests = new List <EPGRequest>();

            foreach (string channelID in channelIds)
            {
                EPGRequest rq = new EPGRequest(channelID, dateRange);
                requests.Add(rq);
            }

            return(GetTVProgrammes(requests, omitDescriptions, matchType));
        }