コード例 #1
0
        /// <summary>
        /// 获取儿童价
        /// </summary>
        /// <param name="tourId">团号</param>
        /// <returns></returns>
        protected string GetChildrenPrice(string tourId)
        {
            decimal Adult    = 0;
            decimal Children = 0;

            EyouSoft.BLL.TourStructure.Tour tourbll = new EyouSoft.BLL.TourStructure.Tour();
            tourbll.GetTourPrice(tourId, SiteUserInfo.TourCompany.CustomerLevel, out Adult, out Children);
            return(EyouSoft.Common.Utils.FilterEndOfTheZeroString(Children.ToString()));
        }