Ejemplo n.º 1
0
        private void btnEditCourseSelection_Click(object sender, EventArgs e)
        {
            frmEnrollmentCourseSelection frm = new frmEnrollmentCourseSelection();

            frm.CurrentEnrollemnt = (Enrollment)apprenticeshipEnrollmentBindingSource.Current;
            frm.ShowDialog();
        }
Ejemplo n.º 2
0
        private void btnEditCourseSelection_Click(object sender, EventArgs e)
        {
            frmEnrollmentCourseSelection frm = new frmEnrollmentCourseSelection();

            frm.CurrentEnrollemnt = (Enrollment)enrollmentBindingSource.Current;
            frm.ShowDialog();
            refreshEnrollmentLinkedCourses();
        }
Ejemplo n.º 3
0
 private void btnSelectCourses_Click(object sender, EventArgs e)
 {
     using (frmEnrollmentCourseSelection frm = new frmEnrollmentCourseSelection())
     {
         frm.CurrentEnrollemnt = this.CurrentEnrollment;
         frm.ShowDialog();
         refreshEnrollment();
     }
 }
Ejemplo n.º 4
0
 private void btnSwitchBackToParentEnrollment_Click(object sender, EventArgs e)
 {
     if (CheckIfAllPreRequisitieCoursesAreCompleted())
     {
         using (frmEnrollmentCourseSelection frm = new frmEnrollmentCourseSelection())
         {
             frm.CurrentEnrollemnt = this.CurrentEnrollment;
             frm.ShowDialog();
             refreshEnrollment();
         }
     }
 }