Ejemplo n.º 1
0
        /// <summary>
        /// Deletes appointment if not closed based in Appointment Id
        /// </summary>
        /// <param name="id"></param>
        /// <returns>Flag as true if Deleted Successfully else false</returns>
        public bool DeleteAppointment(int id)
        {
            AppointmentEditRemove appointmentRemove = new AppointmentEditRemove();

            if (appointmentRemove.RemoveAppointment(id))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Updates The Appointment Status based on the Appointment Id and Status Id
        /// </summary>
        /// <param name="id"></param>
        /// <param name="status"></param>
        /// <returns>Flag as true if Updated Successfully else false</returns>
        public bool EditAppointment(int id, int status)
        {
            AppointmentEditRemove appointmentEdit = new AppointmentEditRemove();

            if (appointmentEdit.EditAppointment(id, status))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }