Compare commits

..

2 Commits

2 changed files with 2 additions and 1 deletions

View File

@@ -207,7 +207,7 @@ public partial class MainWindow : Window
{ {
try try
{ {
((Student)LbStudentsImported.SelectedItem).Name = TbStudentID.Text; ((Student)LbStudentsImported.SelectedItem).ID = TbStudentID.Text;
} }
catch catch
{ {

View File

@@ -16,6 +16,7 @@ public class CourseCrafter
= new(); = new();
public static void Craft() public static void Craft()
{ {
GeneratedCourses = new();
var settings = Settings.Instance; var settings = Settings.Instance;
var students = settings.Students; var students = settings.Students;
var sports = settings.Sports; var sports = settings.Sports;