コード例 #1
0
ファイル: MCData.cs プロジェクト: piet5211/RPLiveTV
 public List<TVProgramme> GetTVProgrammes(List<EPGRequest> EPGrequests, bool omitDescriptions, CommonEPG.TVProgrammeType matchType)
 {
     return storeManager.GetTVProgrammesUsingEPGRequests(EPGrequests, omitDescriptions, matchType);
 }
コード例 #2
0
ファイル: MCData.cs プロジェクト: piet5211/RPLiveTV
        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);
        }