Пример #1
0
        //Lets user make new Appointment.
        private void appointmentButton_Click(object sender, EventArgs e)
        {
            appointmentBuilder newAppointment = new appointmentBuilder();

            newAppointment.Show();
            check = true;
            this.Close();
        }
Пример #2
0
        //Method to allow for an Appointment to be edited. Interface.
        public override void editList(Task temp)
        {
            appointmentBuilder editAppointment = new appointmentBuilder(temp);

            editAppointment.Show();
        }