Example #1
0
File: Card.cs Project: veyner/Magic
 public StudentCard(StudentTable studentTable, List <Student> dataStudent)
 {
     _dataStudent  = dataStudent;
     _studentTable = studentTable;
     InitializeComponent();
     _comboBoxManager = new ComboBoxManager();
     _manager         = new SaveNLoadManager();
     _comboBoxManager.LoadInfoToFacultyCombobox(FacultyComboBox);
     _comboBoxManager.LoadInfoToCourceComboBox(CourceComboBox);
     _manager.LoadDefaultPhoto(PhotoPictureBox);
 }