//public Sala sala; public Zajecie(Przedmiot p, int miejsc) { this.miejsca = miejsc; this.przedmiot = p; Double temp = Math.Floor(((p.przewidziania_ilosc_h / 15) * 60) / 15); this.dlugosc = (int)temp; }
public Boolean Czy_ma_przedmiot(Przedmiot p) { for (int i = 0; i < 5; i++) { for (int j = 0; j < 40; j++) { if (this.plan[i, j] != null) { if (this.plan[i, j].przedmiot.nazwa == p.nazwa) { if (this.plan[i, j].przedmiot.typ == p.typ) { return(true); } } } } } return(false); }