Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 3
0
 public AddSchedule(TouristDataSet.ScheduleDataTable table, DataRow row)
 {
     InitializeComponent();
     this.scheduleDataTable   = table;
     this.scheduleSelectedRow = row;
 }