/** * Informa se un corso è cancellabile da un determianto utente * @return bool */ public function cancellabileDa(Utente $u) { return (bool) contiene($this, $u->corsiBaseDiGestione()); }