Ejemplo n.º 1
0
 public AllCoursesEdit(Course course, AllCourses form)
 {
     InitializeComponent();
     lbCourseId.Text    = course.courseId.ToString();
     tbCourseName.Text  = course.name;
     tbCourseCode.Text  = course.courseCode;
     tbSchoolYear.Text  = course.schoolYear.ToString();
     tbBlockPeriod.Text = course.blockPeriod.ToString();
     tbCredits.Text     = course.credits.ToString();
     this.form          = form;
 }
Ejemplo n.º 2
0
 public AllCoursesAdd(AllCourses form)
 {
     InitializeComponent();
     this.form = form;
 }