public PlaylistEditorForm(StudentList theStudents, Student theStudent, Library theLibrary)
 {
     students = theStudents;
     student  = theStudent;
     library  = theLibrary;
     InitializeComponent();
 }
Exemple #2
0
 public LogInForm(StudentList studentList, Library newLibrary)
 {
     library  = newLibrary;
     students = studentList;
     InitializeComponent();
 }
Exemple #3
0
 private void Form1_Load(object sender, EventArgs e)
 {
     library  = new Library();
     students = new StudentList(library);
 }