Beispiel #1
0
 public GroupsForm(College college) : base(college)
 {
     InitializeComponent();
     RedrawGrid();
 }
Beispiel #2
0
 public StaffForm(College college) : base(college)
 {
     InitializeComponent();
     RedrawTeachersGrid();
     RedrawTechniciansGrid();
 }
 public AddGroupForm(College college)
 {
     InitializeComponent();
     this.college = college;
 }
 public AudiencesForm(College college) : base(college)
 {
     InitializeComponent();
     RedrawGrid();
 }
Beispiel #5
0
 public TemplateForm(College college)
 {
     InitializeComponent();
     this.college = college;
 }
Beispiel #6
0
 public AddStudentForm(College college)
 {
     InitializeComponent();
     this.college = college;
 }
Beispiel #7
0
 public StartLessonForm(College college, string teacherName)
 {
     InitializeComponent();
     this.college     = college;
     this.teacherName = teacherName;
 }
Beispiel #8
0
 public AddHeadmanForm(College college, int group)
 {
     InitializeComponent();
     this.college = college;
     this.group   = group;
 }
Beispiel #9
0
 public AddTeacherForm(College college)
 {
     InitializeComponent();
     this.college = college;
 }
 public AddAudienceForm(College college)
 {
     InitializeComponent();
     this.college = college;
 }
 public AddTechnicianForm(College college)
 {
     InitializeComponent();
     this.college = college;
 }