Пример #1
0
        public Lifestyles GetForecastLifeStyle(Wallet wallet)
        {
            if (wallet.IsIrridium)
            {
                return(Lifestyles.Iridium);
            }
            var forecast = BillingHelper.GetForecast(wallet);

            return(forecast > ForecastPlatinum ? Lifestyles.Platinum : IsForecastGold(forecast));
        }