public RankPlanTrackNumber(LotteryPerdictor lotteryPerdictor) : base(lotteryPerdictor) { _key = _lotteryPerdictor.LotteryPlan.KeyNumber[0]; _numberInfo = _lotteryPerdictor.LotteryEngine.GetNumberInfo(_key - 1); ArrayRanks = new List <string>(); for (int i = _numberInfo.MaxValue; i <= _numberInfo.MaxValue; i++) { ArrayRanks.Add($"第{i}名"); } }
public NumPlanTrackNumber(LotteryPerdictor lotteryPerdictor) : base(lotteryPerdictor) { }
public DragonTigerPlanTrackNumber(LotteryPerdictor perdictor) : base(perdictor) { }
protected BasePlanTrackNumber(LotteryPerdictor perdictor) { _lotteryPerdictor = perdictor; _basicLotteryDataAnlyer = new LotteryDataAnlyer(_lotteryPerdictor.LotteryEngine.LotteryType, _lotteryPerdictor.LotteryEngine.NumberInfos, _lotteryPerdictor.LotteryNorm.BasicHistoryCount); _unitLotteryDataAnlyer = new LotteryDataAnlyer(_lotteryPerdictor.LotteryEngine.LotteryType, _lotteryPerdictor.LotteryEngine.NumberInfos, _lotteryPerdictor.LotteryNorm.UnitHistoryCount); }