Пример #1
0
        private void btnManageAppointment_Click(object sender, EventArgs e)
        {
            ManageAppointment appointment = new ManageAppointment(this);

            this.Hide();
            appointment.Show();
        }
Пример #2
0
 public DoctorAddAppointment(ManageAppointment appointment)
 {
     this.adminApp = appointment;
     //this.btnAdminBack.Visible = true;
     InitializeComponent();
     this.btnAdminBack.Visible = true;
 }