Beispiel #1
0
 public void AddStudente(Studente studente)
 {
     studenti.Add(studente);
 }
Beispiel #2
0
 public Votazione(double voto, Studente studente, Materia materia)
 {
     this.voto = voto;
     studente.AddVoto(this);
     this.materia = materia;
 }