예제 #1
0
 public PlaylistEditorForm(StudentList theStudents, Student theStudent, Library theLibrary)
 {
     students = theStudents;
     student  = theStudent;
     library  = theLibrary;
     InitializeComponent();
 }
예제 #2
0
 public LogInForm(StudentList studentList, Library newLibrary)
 {
     library  = newLibrary;
     students = studentList;
     InitializeComponent();
 }
예제 #3
0
파일: Form1.cs 프로젝트: geomastar/Projects
 private void Form1_Load(object sender, EventArgs e)
 {
     library  = new Library();
     students = new StudentList(library);
 }