function obsadaKierunku()
{
$obsadaKierunku = array();
for ($i = 1; $i <= $this->getRodzajstudiow()->getLata(); $i++) {
$rok = $i;
$semestrZima = round($rok * 2 - 1);
$semestrLato = round($rok * 2);
$przedmiotySemestruZima = $this->przedmiotySemestru($semestrZima);
$przedmiotySemestruLato = $this->przedmiotySemestru($semestrLato);
$obsadaKierunku[] = array(
'rok' => $rok,
'semestrZima' => $semestrZima,
'semestrLato' => $semestrLato,
'przedmiotySemestruZima' => $przedmiotySemestruZima,
'przedmiotySemestruLato' =>$przedmiotySemestruLato,
);
}
return $obsadaKierunku;
}