Ejemplo n.º 1
0
 // Constructor with three argument
 public Project(Lecturer Supervisor, Student StudentOne, Student StudentTwo)
 {
     this.Supervisor = Supervisor;
     this.StudentOne = StudentOne;
     this.StudentTwo = StudentTwo;
 }
Ejemplo n.º 2
0
 // Constructor with one argument
 public Project(Lecturer Supervisor)
 {
     this.Supervisor = Supervisor;
 }