Example #1
0
        private void btnBookAppt_Click(object sender, EventArgs e)
        {
            ScheduleAppointment schedule = new ScheduleAppointment(lblPatientID.Text, lblFirstName.Text, lblLastName.Text);

            schedule.MdiParent = this.MdiParent;
            schedule.Show();
        }
        public void ScheduleAppointmentTest1()
        {
            String PatientID = "1";
            String FirstName = "Sumit";
            String LastName = "Aroraa";

            ScheduleAppointment schedule = new ScheduleAppointment(PatientID, FirstName, LastName);

            String ScheduleID = "1";
            String DoctorID = "1";
            String DoctorName = "John Smith";
            String Date = "2013-12-09";

            schedule.addToSchedule(ScheduleID, DoctorID, DoctorName, Date, PatientID, LastName, FirstName);
        }
Example #3
0
 private void btnBookAppt_Click(object sender, EventArgs e)
 {
     ScheduleAppointment schedule = new ScheduleAppointment(lblPatientID.Text, lblFirstName.Text, lblLastName.Text);
     schedule.MdiParent = this.MdiParent;
     schedule.Show();
 }