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