public Schedule_StudentCoordinator(string connectionString, string id) { this.id = id; this.connectionString = connectionString; this.dtSchedule = new MyDataTableSchedule(); InitializeComponent(); }
public ScheduleOfCourse(String courseID, String connectionString) { this.courseID = courseID; this.connectionString = connectionString; this.dtSchedule = new MyDataTableSchedule(); InitializeComponent(); }
public StudentSchedule(String co, OStudent s) { this.connectionString = co; this.student = s; this.dtSchedule = new MyDataTableSchedule(); InitializeComponent(); }