public List <TVProgramme> GetTVProgrammes(List <EPGRequest> EPGrequests, bool omitDescriptions, CommonEPG.TVProgrammeType matchType) { return(storeManager.GetTVProgrammesUsingEPGRequests(EPGrequests, omitDescriptions, matchType)); }
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)); }