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