Esempio n. 1
0
        private void btnStatus_Click(object sender, EventArgs e)
        {
            AppointmentCreator obj = new AppointmentCreator();

            obj.FillPatientID();
            obj.ShowDialog();
        }
Esempio n. 2
0
        protected void rdbTimeSchedule_Clicked(object sender, EventArgs s)
        {
            RadioButton        rdbTimeButton = sender as RadioButton;
            AppointmentCreator obj           = new AppointmentCreator();

            obj.AssignDetails(PatientDetails, rdbTimeButton.Name, SelectedDate);
            obj.ShowDialog();
        }