public ActionResult Delete(string doctor_ID)
        {
            DoctorService d = new DoctorService();

            d.DeleteDoctorByID(doctor_ID);
            return(RedirectToAction(nameof(Index)));
        }