Esempio n. 1
0
 public LotteryEntity Lottery(EnumLotteryType lotteryType, int subType, int cardCount)
 {
     return(Lottery((int)lotteryType, subType, cardCount));
 }
Esempio n. 2
0
 public LotteryEntity LotteryFive(EnumLotteryType lotteryType, int subType)
 {
     return(Lottery((int)lotteryType, subType, 5, null));
 }
Esempio n. 3
0
 public LotteryEntity Lottery(EnumLotteryType lotteryType, int subType, List <int> prizeEquipments)
 {
     return(Lottery((int)lotteryType, subType, 1, prizeEquipments));
 }
Esempio n. 4
0
 public LotteryEntity Lottery(EnumLotteryType lotteryType, int subType)
 {
     return(Lottery((int)lotteryType, subType));
 }