public Utakmica(Tim domaciTim, Tim gostujuciTim, List <Sudija> sudije, Dictionary <int, Igrac> domaciIgraci, Dictionary <int, Igrac> domaciPetorka, Dictionary <int, Igrac> domaciKlupa, Dictionary <int, Igrac> gostujuciIgraci, Dictionary <int, Igrac> gostujuciPetorka, Dictionary <int, Igrac> gostujuciKlupa, Trener domaciTrener, Trener gostujuciTrener, StatistikaUtakmice statistika) { this.domaciTim = domaciTim; this.gostujuciTim = gostujuciTim; this.sudije = sudije; this.domaciIgraci = domaciIgraci; this.gostujuciIgraci = gostujuciIgraci; this.domaciTrener = domaciTrener; this.gostujuciTrener = gostujuciTrener; this.statistika = statistika; }
public Utakmica() { this.domaciTim = null; this.gostujuciTim = null; this.sudije = new List <Sudija>(); this.domaciIgraci = new Dictionary <int, Igrac>(); this.gostujuciIgraci = new Dictionary <int, Igrac>(); this.domaciTrener = null; this.gostujuciTrener = null; this.statistika = new StatistikaUtakmice(); }