Inheritance: BannerInfoBase
        public BannerInfoWithPhrases <BannerPhraseInfo> GetBannerWithPhrases(BannerInfo banner)
        {
            if (banner == null)
            {
                throw new ArgumentNullException("banner");
            }

            return(GetBannerWithPhrases(banner.BannerId));
        }
        public List <BannerPhraseInfoWithStats> GetBannerPhrasesWithStats(BannerInfo banner, bool considerTimeTarget = false)
        {
            if (banner == null)
            {
                throw new ArgumentNullException("banner");
            }

            return(GetBannerPhrasesWithStats(banner.BannerId, considerTimeTarget));
        }