示例#1
0
 public Turniej(int idd, typTurnieju typ_)
 {
     this.id  = idd;
     this.typ = typ_;
 }
示例#2
0
 //Publiczny konstruktor 2-parametrowy przyjmujący 2 parametry typu int.
 //Ustawia prywatne pola klasy.
 public Turniej(int idd, int typ_)
 {
     this.id  = idd;
     this.typ = (typTurnieju)typ_;
 }