Beispiel #1
0
 //Значение параметра row == null при добавлении
 public AddInstructor(TouristDataSet.InstructorDataTable instructorTable,
                      TouristDataSet.TourTypeDataTable tourTypeTable, TouristDataSet.ScheduleDataTable scheduleTable, DataRow row)
 {
     InitializeComponent();
     this.instructorDataTable   = instructorTable;
     this.tourTypeDataTable     = tourTypeTable;
     this.scheduleDataTable     = scheduleTable;
     this.instructorSelectedRow = row;
 }
Beispiel #2
0
 public AddTour(TouristDataSet.TourDataTable tourTable, TouristDataSet.SightDataTable sightTable,
                TouristDataSet.TourTypeDataTable tourTypeTable, TouristDataSet.ScheduleDataTable scheduleTable, DataRow row)
 {
     InitializeComponent();
     this.tourDataTable     = tourTable;
     this.sightDataTable    = sightTable;
     this.tourTypeDataTable = tourTypeTable;
     this.scheduleDataTable = scheduleTable;
     this.tourSelectedRow   = row;
 }
Beispiel #3
0
 public AddTourType(TouristDataSet.TourTypeDataTable table, DataRow row)
 {
     InitializeComponent();
     this.tourTypeDataTable   = table;
     this.tourTypeSelectedRow = row;
 }