Пример #1
0
 public Bet(int Amount, int ElephantNum, Punter Bettor)
 {
     this.Amount      = Amount;
     this.ElephantNum = ElephantNum;
     this.Bettor      = Bettor;
 }
Пример #2
0
 public Bet(int Amount, int LionNum, Punter Bettor)
 {
     this.Amount  = Amount;
     this.LionNum = LionNum;
     this.Bettor  = Bettor;
 }