public ActionResult RejectedAppointment(int id)
        {
            var isUpdated = _appointmentModel.RejectedAppointmentById(id);

            return(RedirectToAction("PendingAppointment"));
        }