Inheritance: BannerInfoBase
コード例 #1
0
        public BannerInfoWithPhrases <BannerPhraseInfo> GetBannerWithPhrases(BannerInfo banner)
        {
            if (banner == null)
            {
                throw new ArgumentNullException("banner");
            }

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

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