Example #1
0
        public Boolean IsPricesOk(UInt32 a_PriceExpiryDays)
        {
            DateTime limitTime = PriceDate.AddDays(a_PriceExpiryDays);

            if (limitTime < DateTime.UtcNow)
            {
                return(false);
            }

            return(true);
        }