Ejemplo n.º 1
0
        private void assignLecturerButton_Click(object sender, RoutedEventArgs e)
        {
            assignLecturer_Module alm = new assignLecturer_Module();

            alm.ShowDialog();
            createExampleCSVFile("lecturermodules.txt", "lecturerId, moduleId");
        }
Ejemplo n.º 2
0
        // event handler for assign modules that are taught be a lecturer
        private void assignLecturerButton_Click(object sender, RoutedEventArgs e)
        {
            assignLecturer_Module alm = new assignLecturer_Module();

            alm.Owner = this;
            alm.ShowDialog();
            // create example text file to hold csv data
            createExampleCSVFile("lecturermodules.txt", "lecturerId, moduleId");
        }