public void Open_Task_Management_Panel_FUN()
 {
     for (int i = 0; i < Panels.Count; i++)
     {
         Panels[i].SetActive(false);
     }
     Home_Panel.SetActive(true);
     CRUD_Patient_Proflie_Panel.SetActive(false);
     PatientCreatedPopUp.SetActive(false);
     PatientDeletedPopUP.SetActive(false);
     PatientUpdatedPopUP.SetActive(false);
     AppointmentCreatedPopUp.SetActive(false);
     Task_Management_Panel.SetActive(true);
     //Appointment_DB.instance.get_pat_appointments();
     // Mini_Appointments_Panel.SetActive(false);
 }
 public void PatientDeleted_popUp()
 {
     //Addnew_btn.SetActive(false);
     PatientDeletedPopUP.SetActive(true);
 }