Esempio n. 1
0
 public AddEditGroupForm(AutoschoolDataSet.GroupsDataTable groupsDataTable, AutoschoolDataSet.CategoriesDataTable categoriesDataTable, AutoschoolDataSet.TheoryTeachersDataTable theoryTeachersDataTable, DataRow row)
 {
     InitializeComponent();
     this.groupsDataTable         = groupsDataTable;
     this.categoriesDataTable     = categoriesDataTable;
     this.theoryTeachersDataTable = theoryTeachersDataTable;
     dataRow = row;
 }
Esempio n. 2
0
 public AddEditStudentForm(string GroupName, AutoschoolDataSet.StudentsDataTable studentsDataTable,
                           AutoschoolDataSet.GroupsDataTable groupsDataTable, AutoschoolDataSet.InstructorsDataTable instructorsDataTable,
                           DataRow row)
 {
     InitializeComponent();
     NameOfGroup               = GroupName;
     this.studentsDataTable    = studentsDataTable;
     this.groupsDataTable      = groupsDataTable;
     this.instructorsDataTable = instructorsDataTable;
     dataRow = row;
 }
Esempio n. 3
0
 public AddEditTheoryLessonForm(AutoschoolDataSet.TheoryLessonsDataTable theoryLessonsDataTable,
                                AutoschoolDataSet.GroupsDataTable groupsDataTable,
                                AutoschoolDataSet.AuditoriumsDataTable auditoriumsDataTable,
                                DataRow SelectedGroup,
                                DataRow row)
 {
     InitializeComponent();
     this.theoryLessonsDataTable = theoryLessonsDataTable;
     this.groupsDataTable        = groupsDataTable;
     this.auditoriumsDataTable   = auditoriumsDataTable;
     this.SelectedGroup          = SelectedGroup;
     dataRow = row;
 }