Esempio n. 1
0
 internal Disciplina(string nume, Profesor profesor)
 {
     this.nume = nume;
     this.profesor = profesor;
 }
Esempio n. 2
0
 internal Disciplina(string nume, Profesor profesor)
 {
     this.nume     = nume;
     this.profesor = profesor;
 }
Esempio n. 3
0
 public void InserareMaterie(string nume_materie, Profesor profesor)
 {
     disciplina.Add(new Disciplina(nume_materie, profesor));
 }