コード例 #1
0
ファイル: Classe.cs プロジェクト: nicolagaleotti/Registro
 public void AddDocente(Docente docente)
 {
     docenti.Add(docente);
 }
コード例 #2
0
 public Valutazione(double voto, Studente studente, Docente docente)
 {
     this.voto = voto;
     docente.AssegnaVoto(studente, this);
 }