public Turniej(int idd, typTurnieju typ_) { this.id = idd; this.typ = typ_; }
//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_; }