internal Disciplina(string nume, Profesor profesor) { this.nume = nume; this.profesor = profesor; }
public void InserareMaterie(string nume_materie, Profesor profesor) { disciplina.Add(new Disciplina(nume_materie, profesor)); }