示例#1
0
 public Votazione(double v, Studente s, Materia m)
 {
     Voto = v;
     Studente.AddVoto(this);
     Materia = m;
 }
        public Votazione AssegnaVoto(double v, Studente s)
        {
            Votazione voto = new Votazione(v, s, materia);

            return(voto);
        }
示例#3
0
 public void AddStudente(Studente s)
 {
     studente.Add(s);
 }